iwmc3200wifi: fix array out-of-boundary access
[safe/jmp/linux-2.6] / drivers / parisc / hppb.c
index a728a7c..815db17 100644 (file)
@@ -29,7 +29,7 @@ struct hppb_card {
        struct hppb_card *next;
 };
 
-struct hppb_card hppb_card_head = {
+static struct hppb_card hppb_card_head = {
        .hpa = 0,
        .next = NULL,
 };
@@ -62,7 +62,8 @@ static int hppb_probe(struct parisc_device *dev)
                }
                card = card->next;
        }
-        printk(KERN_INFO "Found GeckoBoa at 0x%x\n", dev->hpa.start);
+       printk(KERN_INFO "Found GeckoBoa at 0x%llx\n",
+                       (unsigned long long) dev->hpa.start);
 
        card->hpa = dev->hpa.start;
        card->mmio_region.name = "HP-PB Bus";
@@ -73,8 +74,10 @@ static int hppb_probe(struct parisc_device *dev)
 
        status = ccio_request_resource(dev, &card->mmio_region);
        if(status < 0) {
-               printk(KERN_ERR "%s: failed to claim HP-PB bus space (%08x, %08x)\n",
-                       __FILE__, card->mmio_region.start, card->mmio_region.end);
+               printk(KERN_ERR "%s: failed to claim HP-PB "
+                       "bus space (0x%08llx, 0x%08llx)\n",
+                       __FILE__, (unsigned long long) card->mmio_region.start,
+                       (unsigned long long) card->mmio_region.end);
        }
 
         return 0;
@@ -95,7 +98,7 @@ static struct parisc_driver hppb_driver = {
 };
 
 /**
- * hppb_init - HP-PB bus initalization procedure.
+ * hppb_init - HP-PB bus initialization procedure.
  *
  * Register this driver.   
  */