diff options
author | Joe Perches <joe@perches.com> | 2010-12-13 16:42:22 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-12-14 04:45:15 -0500 |
commit | a8cc0f421b37956262a92591f7397b200d232da6 (patch) | |
tree | 41d72a030677583e9368b652d4a0fc7cdb27a858 /sound/drivers/ml403-ac97cr.c | |
parent | 354d14b3f53cc749c5d26d4ba7280d1e931d6bc4 (diff) |
ALSA: ml403-ac97cr: Use vsprintf extension %pR for struct resource
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/drivers/ml403-ac97cr.c')
-rw-r--r-- | sound/drivers/ml403-ac97cr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/drivers/ml403-ac97cr.c b/sound/drivers/ml403-ac97cr.c index a1282c1c0591..5cfcb908c430 100644 --- a/sound/drivers/ml403-ac97cr.c +++ b/sound/drivers/ml403-ac97cr.c | |||
@@ -1143,8 +1143,8 @@ snd_ml403_ac97cr_create(struct snd_card *card, struct platform_device *pfdev, | |||
1143 | (resource->start) + 1); | 1143 | (resource->start) + 1); |
1144 | if (ml403_ac97cr->port == NULL) { | 1144 | if (ml403_ac97cr->port == NULL) { |
1145 | snd_printk(KERN_ERR SND_ML403_AC97CR_DRIVER ": " | 1145 | snd_printk(KERN_ERR SND_ML403_AC97CR_DRIVER ": " |
1146 | "unable to remap memory region (%x to %x)\n", | 1146 | "unable to remap memory region (%pR)\n", |
1147 | resource->start, resource->end); | 1147 | resource); |
1148 | snd_ml403_ac97cr_free(ml403_ac97cr); | 1148 | snd_ml403_ac97cr_free(ml403_ac97cr); |
1149 | return -EBUSY; | 1149 | return -EBUSY; |
1150 | } | 1150 | } |