Commit 49efdd46 authored by Stuart Brady's avatar Stuart Brady Committed by Kyle McMartin

[PARISC] OSS: Fix build of parisc harmony driver

OSS Harmony got missed on the conversion of parisc_device.hpa to a
struct resource... fix its build.
Signed-off-by: default avatarStuart Brady <sdb@parisc-linux.org>
Signed-off-by: default avatarKyle McMartin <kyle@parisc-linux.org>
parent 5cdb8205
...@@ -1236,7 +1236,7 @@ harmony_driver_probe(struct parisc_device *dev) ...@@ -1236,7 +1236,7 @@ harmony_driver_probe(struct parisc_device *dev)
} }
/* Set the HPA of harmony */ /* Set the HPA of harmony */
harmony.hpa = (struct harmony_hpa *)dev->hpa; harmony.hpa = (struct harmony_hpa *)dev->hpa.start;
harmony.dev = dev; harmony.dev = dev;
/* Grab the ID and revision from the device */ /* Grab the ID and revision from the device */
...@@ -1250,7 +1250,7 @@ harmony_driver_probe(struct parisc_device *dev) ...@@ -1250,7 +1250,7 @@ harmony_driver_probe(struct parisc_device *dev)
printk(KERN_INFO "Lasi Harmony Audio driver " HARMONY_VERSION ", " printk(KERN_INFO "Lasi Harmony Audio driver " HARMONY_VERSION ", "
"h/w id %i, rev. %i at 0x%lx, IRQ %i\n", "h/w id %i, rev. %i at 0x%lx, IRQ %i\n",
id, rev, dev->hpa, harmony.dev->irq); id, rev, dev->hpa.start, harmony.dev->irq);
/* Make sure the control bit isn't set, although I don't think it /* Make sure the control bit isn't set, although I don't think it
ever is. */ ever is. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment