diff options
Diffstat (limited to 'drivers/parisc/dino.c')
-rw-r--r-- | drivers/parisc/dino.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/parisc/dino.c b/drivers/parisc/dino.c index 8c61705e67a5..37820b0ae5ee 100644 --- a/drivers/parisc/dino.c +++ b/drivers/parisc/dino.c | |||
@@ -902,15 +902,15 @@ void ccio_cujo20_fixup(struct parisc_device *dev, u32 iovp); | |||
902 | ** If so, initialize the chip appropriately (card-mode vs bridge mode). | 902 | ** If so, initialize the chip appropriately (card-mode vs bridge mode). |
903 | ** Much of the initialization is common though. | 903 | ** Much of the initialization is common though. |
904 | */ | 904 | */ |
905 | static int __init | 905 | static int __init dino_probe(struct parisc_device *dev) |
906 | dino_driver_callback(struct parisc_device *dev) | ||
907 | { | 906 | { |
908 | struct dino_device *dino_dev; // Dino specific control struct | 907 | struct dino_device *dino_dev; // Dino specific control struct |
909 | const char *version = "unknown"; | 908 | const char *version = "unknown"; |
910 | char *name; | 909 | char *name; |
911 | int is_cujo = 0; | 910 | int is_cujo = 0; |
912 | struct pci_bus *bus; | 911 | struct pci_bus *bus; |
913 | 912 | unsigned long hpa = dev->hpa.start; | |
913 | |||
914 | name = "Dino"; | 914 | name = "Dino"; |
915 | if (is_card_dino(&dev->id)) { | 915 | if (is_card_dino(&dev->id)) { |
916 | version = "3.x (card mode)"; | 916 | version = "3.x (card mode)"; |