#undef SHOW_GATWICK_IRQS
 
-int ppc_override_l2cr = 0;
-int ppc_override_l2cr_value;
-int has_l2cache = 0;
+static int has_l2cache;
 
 int pmac_newworld;
 
                        const unsigned int *l2cr =
                                of_get_property(np, "l2cr-value", NULL);
                        if (l2cr) {
-                               ppc_override_l2cr = 1;
-                               ppc_override_l2cr_value = *l2cr;
                                _set_L2CR(0);
-                               _set_L2CR(ppc_override_l2cr_value);
+                               _set_L2CR(*l2cr);
+                               pr_info("L2CR overridden (0x%x), backside cache is %s\n",
+                                       *l2cr, ((*l2cr) & 0x80000000) ?
+                                       "enabled" : "disabled");
                        }
                        of_node_put(np);
                        break;
                }
        }
-
-       if (ppc_override_l2cr)
-               printk(KERN_INFO "L2CR overridden (0x%x), "
-                      "backside cache is %s\n",
-                      ppc_override_l2cr_value,
-                      (ppc_override_l2cr_value & 0x80000000)
-                               ? "enabled" : "disabled");
 }
 #endif