[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: Stuart Brady <sdb@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

authored by

Stuart Brady and committed by
Kyle McMartin
49efdd46 5cdb8205

+2 -2
+2 -2
sound/oss/harmony.c
··· 1236 } 1237 1238 /* Set the HPA of harmony */ 1239 - harmony.hpa = (struct harmony_hpa *)dev->hpa; 1240 harmony.dev = dev; 1241 1242 /* Grab the ID and revision from the device */ ··· 1250 1251 printk(KERN_INFO "Lasi Harmony Audio driver " HARMONY_VERSION ", " 1252 "h/w id %i, rev. %i at 0x%lx, IRQ %i\n", 1253 - id, rev, dev->hpa, harmony.dev->irq); 1254 1255 /* Make sure the control bit isn't set, although I don't think it 1256 ever is. */
··· 1236 } 1237 1238 /* Set the HPA of harmony */ 1239 + harmony.hpa = (struct harmony_hpa *)dev->hpa.start; 1240 harmony.dev = dev; 1241 1242 /* Grab the ID and revision from the device */ ··· 1250 1251 printk(KERN_INFO "Lasi Harmony Audio driver " HARMONY_VERSION ", " 1252 "h/w id %i, rev. %i at 0x%lx, IRQ %i\n", 1253 + id, rev, dev->hpa.start, harmony.dev->irq); 1254 1255 /* Make sure the control bit isn't set, although I don't think it 1256 ever is. */