aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-11-09 22:16:21 -0500
committerStephen Rothwell <sfr@canb.auug.org.au>2005-11-09 22:40:43 -0500
commit676e2497f87501fb190a5b06103d396ca9147373 (patch)
tree8d5c500a8a1f665243990658940e88760da1fcde /arch/powerpc
parente1449ed956ae29129bde3e5137dde1d579d585ff (diff)
powerpc: remove some warnings when building iSeries
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/prom.c6
-rw-r--r--arch/powerpc/platforms/iseries/setup.c1
2 files changed, 3 insertions, 4 deletions
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c
index 1bf3642cb85..fd3bcb4a9e9 100644
--- a/arch/powerpc/kernel/prom.c
+++ b/arch/powerpc/kernel/prom.c
@@ -1084,9 +1084,9 @@ void __init unflatten_device_tree(void)
1084static int __init early_init_dt_scan_cpus(unsigned long node, 1084static int __init early_init_dt_scan_cpus(unsigned long node,
1085 const char *uname, int depth, void *data) 1085 const char *uname, int depth, void *data)
1086{ 1086{
1087 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
1088 u32 *prop; 1087 u32 *prop;
1089 unsigned long size = 0; 1088 unsigned long size;
1089 char *type = of_get_flat_dt_prop(node, "device_type", &size);
1090 1090
1091 /* We are scanning "cpu" nodes only */ 1091 /* We are scanning "cpu" nodes only */
1092 if (type == NULL || strcmp(type, "cpu") != 0) 1092 if (type == NULL || strcmp(type, "cpu") != 0)
@@ -1112,7 +1112,7 @@ static int __init early_init_dt_scan_cpus(unsigned long node,
1112 1112
1113#ifdef CONFIG_ALTIVEC 1113#ifdef CONFIG_ALTIVEC
1114 /* Check if we have a VMX and eventually update CPU features */ 1114 /* Check if we have a VMX and eventually update CPU features */
1115 prop = (u32 *)of_get_flat_dt_prop(node, "ibm,vmx", &size); 1115 prop = (u32 *)of_get_flat_dt_prop(node, "ibm,vmx", NULL);
1116 if (prop && (*prop) > 0) { 1116 if (prop && (*prop) > 0) {
1117 cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC; 1117 cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC;
1118 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC; 1118 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC;
diff --git a/arch/powerpc/platforms/iseries/setup.c b/arch/powerpc/platforms/iseries/setup.c
index 623c39aa043..19b415f6e5d 100644
--- a/arch/powerpc/platforms/iseries/setup.c
+++ b/arch/powerpc/platforms/iseries/setup.c
@@ -705,7 +705,6 @@ static void iseries_shared_idle(void)
705 705
706static void iseries_dedicated_idle(void) 706static void iseries_dedicated_idle(void)
707{ 707{
708 long oldval;
709 set_thread_flag(TIF_POLLING_NRFLAG); 708 set_thread_flag(TIF_POLLING_NRFLAG);
710 709
711 while (1) { 710 while (1) {