diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-30 03:54:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:53 -0400 |
commit | bdf4bbaaee3d4b8f555658333cbce1affe9070fb (patch) | |
tree | e85af55f310d5bd9391cc374bc32def7c5458046 /drivers/media | |
parent | 354a1f4d99240f53980275416ca3e1ac2ee73d5d (diff) |
Add macros similar to min/max/min_t/max_t
Also, change the variable names used in the min/max macros to avoid shadowed
variable warnings when min/max min_t/max_t are nested.
Small formatting changes to make all the macros have a similar form.
[akpm@linux-foundation.org: coding-style fixes]
[akpm@linux-foundation.org: fix v4l build]
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Cc: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: Tejun Heo <htejun@gmail.com>
Cc: Michael Buesch <mb@bu3sch.de>
Cc: "John W. Linville" <linville@tuxdriver.com>
Cc: Miklos Szeredi <miklos@szeredi.hu>
Cc: Dmitry Torokhov <dtor@mail.ru>
Cc: Jiri Kosina <jkosina@suse.cz>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/bt8xx/bttvp.h | 2 | ||||
-rw-r--r-- | drivers/media/video/usbvideo/vicam.c | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/drivers/media/video/bt8xx/bttvp.h b/drivers/media/video/bt8xx/bttvp.h index 03816b73f847..27da7b423275 100644 --- a/drivers/media/video/bt8xx/bttvp.h +++ b/drivers/media/video/bt8xx/bttvp.h | |||
@@ -81,8 +81,6 @@ | |||
81 | /* Limits scaled width, which must be a multiple of 4. */ | 81 | /* Limits scaled width, which must be a multiple of 4. */ |
82 | #define MAX_HACTIVE (0x3FF & -4) | 82 | #define MAX_HACTIVE (0x3FF & -4) |
83 | 83 | ||
84 | #define clamp(x, low, high) min (max (low, x), high) | ||
85 | |||
86 | #define BTTV_NORMS (\ | 84 | #define BTTV_NORMS (\ |
87 | V4L2_STD_PAL | V4L2_STD_PAL_N | \ | 85 | V4L2_STD_PAL | V4L2_STD_PAL_N | \ |
88 | V4L2_STD_PAL_Nc | V4L2_STD_SECAM | \ | 86 | V4L2_STD_PAL_Nc | V4L2_STD_SECAM | \ |
diff --git a/drivers/media/video/usbvideo/vicam.c b/drivers/media/video/usbvideo/vicam.c index 64819353276a..17f542dfb366 100644 --- a/drivers/media/video/usbvideo/vicam.c +++ b/drivers/media/video/usbvideo/vicam.c | |||
@@ -70,12 +70,6 @@ | |||
70 | 70 | ||
71 | #define VICAM_HEADER_SIZE 64 | 71 | #define VICAM_HEADER_SIZE 64 |
72 | 72 | ||
73 | #define clamp( x, l, h ) max_t( __typeof__( x ), \ | ||
74 | ( l ), \ | ||
75 | min_t( __typeof__( x ), \ | ||
76 | ( h ), \ | ||
77 | ( x ) ) ) | ||
78 | |||
79 | /* Not sure what all the bytes in these char | 73 | /* Not sure what all the bytes in these char |
80 | * arrays do, but they're necessary to make | 74 | * arrays do, but they're necessary to make |
81 | * the camera work. | 75 | * the camera work. |