aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/serial/8250_gsc.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/serial/8250_gsc.c')
-rw-r--r--drivers/serial/8250_gsc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/serial/8250_gsc.c b/drivers/serial/8250_gsc.c
index 431aa5761a7a..abc5a0cfe243 100644
--- a/drivers/serial/8250_gsc.c
+++ b/drivers/serial/8250_gsc.c
@@ -42,12 +42,13 @@ serial_init_chip(struct parisc_device *dev)
42 */ 42 */
43 if (parisc_parent(dev)->id.hw_type != HPHW_IOA) { 43 if (parisc_parent(dev)->id.hw_type != HPHW_IOA) {
44 printk(KERN_INFO "Serial: device 0x%lx not configured.\n" 44 printk(KERN_INFO "Serial: device 0x%lx not configured.\n"
45 "Enable support for Wax, Lasi, Asp or Dino.\n", dev->hpa); 45 "Enable support for Wax, Lasi, Asp or Dino.\n",
46 dev->hpa.start);
46 } 47 }
47 return -ENODEV; 48 return -ENODEV;
48 } 49 }
49 50
50 address = dev->hpa; 51 address = dev->hpa.start;
51 if (dev->id.sversion != 0x8d) { 52 if (dev->id.sversion != 0x8d) {
52 address += 0x800; 53 address += 0x800;
53 } 54 }