Fixes to slash merge

This commit is contained in:
Luke D. Jones
2024-04-10 09:13:26 +12:00
parent a737d240be
commit 564992719e
15 changed files with 194 additions and 174 deletions

View File

@@ -3,14 +3,14 @@
pub mod config;
/// Control of anime matrix display
pub mod ctrl_anime;
/// Control of Slash led bar
pub mod ctrl_slash;
/// Keyboard LED brightness control, RGB, and LED display modes
pub mod ctrl_aura;
/// Control platform profiles + fan-curves if available
pub mod ctrl_fancurves;
/// Control ASUS bios function such as boot sound, Optimus/Dedicated gfx mode
pub mod ctrl_platform;
/// Control of Slash led bar
pub mod ctrl_slash;
pub mod error;
@@ -146,8 +146,7 @@ pub trait ReloadAndNotify {
}
pub trait ZbusRun {
fn add_to_server(self, server: &mut Connection)
-> impl Future<Output = ()> + Send;
fn add_to_server(self, server: &mut Connection) -> impl Future<Output = ()> + Send;
fn add_to_server_helper(
iface: impl zbus::Interface,
@@ -318,4 +317,4 @@ where
zbus_clone.create_tasks(signal_ctx).await.ok();
Ok(())
}
}