Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 1 | #ifndef _ASM_X86_PLATFORM_H |
| 2 | #define _ASM_X86_PLATFORM_H |
| 3 | |
| 4 | /** |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame^] | 5 | * struct x86_init_resources - platform specific resource related ops |
| 6 | * @probe_roms: probe BIOS roms |
| 7 | * |
| 8 | */ |
| 9 | struct x86_init_resources { |
| 10 | void (*probe_roms)(void); |
| 11 | }; |
| 12 | |
| 13 | /** |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 14 | * struct x86_init_ops - functions for platform specific setup |
| 15 | * |
| 16 | */ |
| 17 | struct x86_init_ops { |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame^] | 18 | struct x86_init_resources resources; |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 19 | }; |
| 20 | |
| 21 | extern struct x86_init_ops x86_init; |
| 22 | |
| 23 | extern void x86_init_noop(void); |
| 24 | |
| 25 | #endif |