compal-laptop/fujitsu-laptop/msi-laptop: make dmi_check_cb to return 1 instead of 0
dmi_check_system() walks the table running matching functions until someone returns non zero or we hit the end. This patch makes dmi_check_cb to return 1 so dmi_check_system() return immediately when a match is found. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Jonathan Woithe <jwoithe@physics.adelaide.edu.au> Cc: Matthew Garrett <mjg@redhat.com>a Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Matthew Garrett <mjg@redhat.com>
This commit is contained in:

committed by
Matthew Garrett

parent
9be0fcb5ed
commit
80183a4b63
@@ -275,7 +275,7 @@ static int set_backlight_level(int level)
|
||||
|
||||
ec_write(BACKLIGHT_LEVEL_ADDR, level);
|
||||
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int get_backlight_level(void)
|
||||
|
Reference in New Issue
Block a user