diff options
author | Paul Mackerras <paulus@samba.org> | 2007-07-10 23:28:26 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-07-10 23:28:26 -0400 |
commit | bf22f6fe2d72b4d7e9035be8ceb340414cf490e3 (patch) | |
tree | 14085d90de0428316479fe6de8a0c6d32e6e65e2 /arch/powerpc/boot/ops.h | |
parent | 4eb6bf6bfb580afaf1e1a1d30cba17a078530cf4 (diff) | |
parent | 93ab471889c6662b42ce7da257f31f24c08d7d9e (diff) |
Merge branch 'for-2.6.23' into merge
Diffstat (limited to 'arch/powerpc/boot/ops.h')
-rw-r--r-- | arch/powerpc/boot/ops.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/boot/ops.h b/arch/powerpc/boot/ops.h index 959124f3f9af..86077066cd7c 100644 --- a/arch/powerpc/boot/ops.h +++ b/arch/powerpc/boot/ops.h | |||
@@ -19,6 +19,8 @@ | |||
19 | #define MAX_PATH_LEN 256 | 19 | #define MAX_PATH_LEN 256 |
20 | #define MAX_PROP_LEN 256 /* What should this be? */ | 20 | #define MAX_PROP_LEN 256 /* What should this be? */ |
21 | 21 | ||
22 | typedef void (*kernel_entry_t)(unsigned long r3, unsigned long r4, void *r5); | ||
23 | |||
22 | /* Platform specific operations */ | 24 | /* Platform specific operations */ |
23 | struct platform_ops { | 25 | struct platform_ops { |
24 | void (*fixups)(void); | 26 | void (*fixups)(void); |
@@ -51,7 +53,7 @@ extern struct dt_ops dt_ops; | |||
51 | /* Console operations */ | 53 | /* Console operations */ |
52 | struct console_ops { | 54 | struct console_ops { |
53 | int (*open)(void); | 55 | int (*open)(void); |
54 | void (*write)(char *buf, int len); | 56 | void (*write)(const char *buf, int len); |
55 | void (*edit_cmdline)(char *buf, int len); | 57 | void (*edit_cmdline)(char *buf, int len); |
56 | void (*close)(void); | 58 | void (*close)(void); |
57 | void *data; | 59 | void *data; |