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/video/usbvideo | |
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/video/usbvideo')
-rw-r--r-- | drivers/media/video/usbvideo/vicam.c | 6 |
1 files changed, 0 insertions, 6 deletions
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. |