Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c388b2c6 authored by Axel Lin's avatar Axel Lin Committed by Dmitry Torokhov
Browse files

Input: atkbd - make dmi callback functions return 1



We only care about if there is a successful match from the table (or
no match at all), so let's make dmi_check_system return immediately
instead of iterating thorough the whole table.

Make the dmi callback function return 1 then dmi_check_system
will return immediately if we have a successful match.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent bdda8216
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1578,14 +1578,14 @@ static int __init atkbd_setup_forced_release(const struct dmi_system_id *id)
	atkbd_platform_fixup = atkbd_apply_forced_release_keylist;
	atkbd_platform_fixup_data = id->driver_data;

	return 0;
	return 1;
}

static int __init atkbd_setup_scancode_fixup(const struct dmi_system_id *id)
{
	atkbd_platform_scancode_fixup = id->driver_data;

	return 0;
	return 1;
}

static const struct dmi_system_id atkbd_dmi_quirk_table[] __initconst = {