home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / linux / reboot_fixups.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  223 b   |  11 lines

  1. #ifndef _LINUX_REBOOT_FIXUPS_H
  2. #define _LINUX_REBOOT_FIXUPS_H
  3.  
  4. #ifdef CONFIG_X86_REBOOTFIXUPS
  5. extern void mach_reboot_fixups(void);
  6. #else
  7. #define mach_reboot_fixups() ((void)(0))
  8. #endif
  9.  
  10. #endif /* _LINUX_REBOOT_FIXUPS_H */
  11.