Skip to content

Commit

Permalink
input: i8042 - add runtime check in x86's i8042_platform_init
Browse files Browse the repository at this point in the history
Then it will first check x86_platforms's i8042 detection result,
then go on with normal probe.

Signed-off-by: Feng Tang <feng.tang@intel.com>
LKML-Reference: <4c34dd482753bb8f1@agluck-desktop.sc.intel.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Acked-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
  • Loading branch information
Feng Tang authored and H. Peter Anvin committed Jul 8, 2010
1 parent c9d46f6 commit 5cdfa1c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions drivers/input/serio/i8042-x86ia64io.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
* the Free Software Foundation.
*/

#ifdef CONFIG_X86
#include <asm/x86_init.h>
#endif

/*
* Names.
*/
Expand Down Expand Up @@ -840,6 +844,12 @@ static int __init i8042_platform_init(void)
{
int retval;

#ifdef CONFIG_X86
/* Just return if pre-detection shows no i8042 controller exist */
if (!x86_platform.i8042_detect())
return -ENODEV;
#endif

/*
* On ix86 platforms touching the i8042 data register region can do really
* bad things. Because of this the region is always reserved on ix86 boxes.
Expand Down

0 comments on commit 5cdfa1c

Please sign in to comment.