File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -1421,6 +1421,31 @@ static int __init i8042_platform_init(void)
1421
1421
1422
1422
i8042_check_quirks ();
1423
1423
1424
+ pr_debug ("Active quirks (empty means none):%s%s%s%s%s%s%s%s%s%s%s%s%s\n" ,
1425
+ i8042_nokbd ? " nokbd" : "" ,
1426
+ i8042_noaux ? " noaux" : "" ,
1427
+ i8042_nomux ? " nomux" : "" ,
1428
+ i8042_unlock ? " unlock" : "" ,
1429
+ i8042_probe_defer ? "probe_defer" : "" ,
1430
+ i8042_reset == I8042_RESET_DEFAULT ?
1431
+ "" : i8042_reset == I8042_RESET_ALWAYS ?
1432
+ " reset_always" : " reset_never" ,
1433
+ i8042_direct ? " direct" : "" ,
1434
+ i8042_dumbkbd ? " dumbkbd" : "" ,
1435
+ i8042_noloop ? " noloop" : "" ,
1436
+ i8042_notimeout ? " notimeout" : "" ,
1437
+ i8042_kbdreset ? " kbdreset" : "" ,
1438
+ #ifdef CONFIG_X86
1439
+ i8042_dritek ? " dritek" : "" ,
1440
+ #else
1441
+ "" ,
1442
+ #endif
1443
+ #ifdef CONFIG_PNP
1444
+ i8042_nopnp ? " nopnp" : "" );
1445
+ #else
1446
+ "" );
1447
+ #endif
1448
+
1424
1449
retval = i8042_pnp_init ();
1425
1450
if (retval )
1426
1451
return retval ;
You can’t perform that action at this time.
0 commit comments