diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-03-03 12:40:36 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-03-03 12:40:36 +0100 |
commit | ef1b8f512975727ef4fb44685cbcfe75d9ab9c97 (patch) | |
tree | a043e43306894864b237b18c2ac3d934eb661197 /linux/drivers/media/video/ivtv | |
parent | 38b42de6b009013730f3ed0684a86ae0b8b2e0b6 (diff) | |
download | mediapointer-dvb-s2-ef1b8f512975727ef4fb44685cbcfe75d9ab9c97.tar.gz mediapointer-dvb-s2-ef1b8f512975727ef4fb44685cbcfe75d9ab9c97.tar.bz2 |
Add missing IVTV_FB_WARN #define
From: Hans Verkuil <hverkuil@xs4all.nl>
This is needed for ivtv-fb.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/ivtv')
-rw-r--r-- | linux/drivers/media/video/ivtv/ivtv-driver.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-driver.h b/linux/drivers/media/video/ivtv/ivtv-driver.h index 3daf1a9fc..05108c842 100644 --- a/linux/drivers/media/video/ivtv/ivtv-driver.h +++ b/linux/drivers/media/video/ivtv/ivtv-driver.h @@ -313,8 +313,9 @@ extern const u32 yuv_offset[4]; #define IVTV_ERR(fmt, args...) printk(KERN_ERR "ivtv%d: " fmt, itv->num , ## args) #define IVTV_WARN(fmt, args...) printk(KERN_WARNING "ivtv%d: " fmt, itv->num , ## args) #define IVTV_INFO(fmt, args...) printk(KERN_INFO "ivtv%d: " fmt, itv->num , ## args) -#define IVTV_FB_ERR(fmt, args...) printk(KERN_ERR "ivtv%d-fb: " fmt, itv->num , ## args) -#define IVTV_FB_INFO(fmt, args...) printk(KERN_INFO "ivtv%d-fb: " fmt, itv->num , ## args) +#define IVTV_FB_ERR(fmt, args...) printk(KERN_ERR "ivtv%d-fb: " fmt, itv->num , ## args) +#define IVTV_FB_WARN(fmt, args...) printk(KERN_WARNING "ivtv%d-fb: " fmt, itv->num , ## args) +#define IVTV_FB_INFO(fmt, args...) printk(KERN_INFO "ivtv%d-fb: " fmt, itv->num , ## args) /* Values for IVTV_API_DEC_PLAYBACK_SPEED mpeg_frame_type_mask parameter: */ #define MPEG_FRAME_TYPE_IFRAME 1 |