diff --git a/src/tuxedo_io/tuxedo_io.c b/src/tuxedo_io/tuxedo_io.c index 07e0f02..b8c4e03 100644 --- a/src/tuxedo_io/tuxedo_io.c +++ b/src/tuxedo_io/tuxedo_io.c @@ -49,19 +49,6 @@ static u32 id_check_uniwill; static struct uniwill_device_features_t *uw_feats; -/** - * strstr version of dmi_match - */ -static bool dmi_string_in(enum dmi_field f, const char *str) -{ - const char *info = dmi_get_system_info(f); - - if (info == NULL || str == NULL) - return info == str; - - return strstr(info, str) != NULL; -} - static u32 clevo_identify(void) { return clevo_get_active_interface_id(NULL) == 0 ? 1 : 0; diff --git a/src/uniwill_keyboard.h b/src/uniwill_keyboard.h index 2193516..4831c28 100644 --- a/src/uniwill_keyboard.h +++ b/src/uniwill_keyboard.h @@ -58,7 +58,6 @@ #define UNIWILL_COLOR_DEFAULT 0xffffff static void uw_charging_priority_write_state(void); -static void uw_charging_profile_write_state(void); struct tuxedo_keyboard_driver uniwill_keyboard_driver; @@ -983,12 +982,6 @@ static int uw_has_charging_profile(bool *status) return 0; } -static void uw_charging_profile_write_state(void) -{ - if (uw_charging_profile_loaded) - uw_set_charging_profile(uw_charging_profile_last_written_value); -} - static void uw_charging_profile_init(struct platform_device *dev) { u8 value;