x86_init.h 448 B

12345678910111213141516171819202122232425
  1. #ifndef _ASM_X86_PLATFORM_H
  2. #define _ASM_X86_PLATFORM_H
  3. /**
  4. * struct x86_init_resources - platform specific resource related ops
  5. * @probe_roms: probe BIOS roms
  6. *
  7. */
  8. struct x86_init_resources {
  9. void (*probe_roms)(void);
  10. };
  11. /**
  12. * struct x86_init_ops - functions for platform specific setup
  13. *
  14. */
  15. struct x86_init_ops {
  16. struct x86_init_resources resources;
  17. };
  18. extern struct x86_init_ops x86_init;
  19. extern void x86_init_noop(void);
  20. #endif