ChangeSet 1.2231.1.33, 2005/03/28 19:25:28-08:00, [EMAIL PROTECTED]
[PATCH] ppc64: fix compile error in prom.c
arch/ppc64/kernel/prom.c:1691: error: syntax error before
'prom_reconfig_notifier'
arch/ppc64/kernel/prom.c:1692: error: field name not in record or union
initializer
arch/ppc64/kernel/prom.c:1692: error: (near initialization for
'prom_reconfig_nb')
arch/ppc64/kernel/prom.c:1692: warning: initialization makes pointer
from integer without a cast
Signed-off-by: Mikael Pettersson <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
prom.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -Nru a/arch/ppc64/kernel/prom.c b/arch/ppc64/kernel/prom.c
--- a/arch/ppc64/kernel/prom.c 2005-03-28 21:13:36 -08:00
+++ b/arch/ppc64/kernel/prom.c 2005-03-28 21:13:36 -08:00
@@ -1688,7 +1688,7 @@
}
static struct notifier_block prom_reconfig_nb = {
- .notifier_call prom_reconfig_notifier,
+ .notifier_call = prom_reconfig_notifier,
.priority = 10, /* This one needs to run first */
};
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html