diff options
Diffstat (limited to 'sound/ppc/pmac.c')
-rw-r--r-- | sound/ppc/pmac.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sound/ppc/pmac.c b/sound/ppc/pmac.c index b678814975c9..be98f6377339 100644 --- a/sound/ppc/pmac.c +++ b/sound/ppc/pmac.c | |||
@@ -1170,9 +1170,10 @@ int __init snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return) | |||
1170 | chip->rsrc[i].start + 1, | 1170 | chip->rsrc[i].start + 1, |
1171 | rnames[i]) == NULL) { | 1171 | rnames[i]) == NULL) { |
1172 | printk(KERN_ERR "snd: can't request rsrc " | 1172 | printk(KERN_ERR "snd: can't request rsrc " |
1173 | " %d (%s: 0x%08lx:%08lx)\n", | 1173 | " %d (%s: 0x%016lx:%016lx)\n", |
1174 | i, rnames[i], chip->rsrc[i].start, | 1174 | i, rnames[i], |
1175 | chip->rsrc[i].end); | 1175 | (unsigned long long)chip->rsrc[i].start, |
1176 | (unsigned long long)chip->rsrc[i].end); | ||
1176 | err = -ENODEV; | 1177 | err = -ENODEV; |
1177 | goto __error; | 1178 | goto __error; |
1178 | } | 1179 | } |
@@ -1201,9 +1202,10 @@ int __init snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return) | |||
1201 | chip->rsrc[i].start + 1, | 1202 | chip->rsrc[i].start + 1, |
1202 | rnames[i]) == NULL) { | 1203 | rnames[i]) == NULL) { |
1203 | printk(KERN_ERR "snd: can't request rsrc " | 1204 | printk(KERN_ERR "snd: can't request rsrc " |
1204 | " %d (%s: 0x%08lx:%08lx)\n", | 1205 | " %d (%s: 0x%016llx:%016llx)\n", |
1205 | i, rnames[i], chip->rsrc[i].start, | 1206 | i, rnames[i], |
1206 | chip->rsrc[i].end); | 1207 | (unsigned long long)chip->rsrc[i].start, |
1208 | (unsigned long long)chip->rsrc[i].end); | ||
1207 | err = -ENODEV; | 1209 | err = -ENODEV; |
1208 | goto __error; | 1210 | goto __error; |
1209 | } | 1211 | } |