diff options
author | Filipe Rosset <rosset.filipe@gmail.com> | 2009-11-04 13:31:25 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 15:41:13 -0500 |
commit | 0bc23083cfa0e4bee3a89254c0af7dc6a16513bb (patch) | |
tree | 9718619b4e3bb37d44a08b12d8b1cb71cf3101e1 /drivers/media/video | |
parent | 9710e7a77a0a0564a393250d86b8cb3d560bb69f (diff) |
V4L/DVB (13289): em28xx-audio: Convert printks to em28xx_err
Convert printks to em28xx_err.
Signed-off-by: Filipe Rosset <rosset.filipe@gmail.com>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-audio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/em28xx/em28xx-audio.c b/drivers/media/video/em28xx/em28xx-audio.c index ac947aecb9c3..bd783387b37d 100644 --- a/drivers/media/video/em28xx/em28xx-audio.c +++ b/drivers/media/video/em28xx/em28xx-audio.c | |||
@@ -293,7 +293,7 @@ static int snd_em28xx_capture_open(struct snd_pcm_substream *substream) | |||
293 | dprintk("opening device and trying to acquire exclusive lock\n"); | 293 | dprintk("opening device and trying to acquire exclusive lock\n"); |
294 | 294 | ||
295 | if (!dev) { | 295 | if (!dev) { |
296 | printk(KERN_ERR "BUG: em28xx can't find device struct." | 296 | em28xx_err("BUG: em28xx can't find device struct." |
297 | " Can't proceed with open\n"); | 297 | " Can't proceed with open\n"); |
298 | return -ENODEV; | 298 | return -ENODEV; |
299 | } | 299 | } |
@@ -325,7 +325,7 @@ static int snd_em28xx_capture_open(struct snd_pcm_substream *substream) | |||
325 | 325 | ||
326 | return 0; | 326 | return 0; |
327 | err: | 327 | err: |
328 | printk(KERN_ERR "Error while configuring em28xx mixer\n"); | 328 | em28xx_err("Error while configuring em28xx mixer\n"); |
329 | return ret; | 329 | return ret; |
330 | } | 330 | } |
331 | 331 | ||