kbdleds.h 415 B

1234567891011121314151617
  1. #ifndef _ASM_X86_KBDLEDS_H
  2. #define _ASM_X86_KBDLEDS_H
  3. /*
  4. * Some laptops take the 789uiojklm,. keys as number pad when NumLock is on.
  5. * This seems a good reason to start with NumLock off. That's why on X86 we
  6. * ask the bios for the correct state.
  7. */
  8. #include <asm/setup.h>
  9. static inline int kbd_defleds(void)
  10. {
  11. return boot_params.kbd_status & 0x20 ? (1 << VC_NUMLOCK) : 0;
  12. }
  13. #endif /* _ASM_X86_KBDLEDS_H */