diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-09 13:02:11 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-09 13:02:11 +0000 |
commit | 31968551a3292edae62b6b1a007b0ae361851241 (patch) | |
tree | a00066e983bc599630f6eededfc1eef79586f4bc /linux/drivers/media/video/se401.h | |
parent | 20235d898f6e1fe04b67efccc344467c0c8c7779 (diff) | |
download | mediapointer-dvb-s2-31968551a3292edae62b6b1a007b0ae361851241.tar.gz mediapointer-dvb-s2-31968551a3292edae62b6b1a007b0ae361851241.tar.bz2 |
se401: Fix coding style
From: Alan Cox <alan@linux.intel.com>
Having fixed the sprintfs I decided a quick clean wouldn't do any harm so
it was actually easy to read in future.
Priority: normal
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers/media/video/se401.h')
-rw-r--r-- | linux/drivers/media/video/se401.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/linux/drivers/media/video/se401.h b/linux/drivers/media/video/se401.h index 0be02c48b..00f0ddbf4 100644 --- a/linux/drivers/media/video/se401.h +++ b/linux/drivers/media/video/se401.h @@ -2,7 +2,7 @@ #ifndef __LINUX_se401_H #define __LINUX_se401_H -#include <asm/uaccess.h> +#include <linux/uaccess.h> #include "compat.h" #include <linux/videodev.h> #include <media/v4l2-common.h> @@ -13,9 +13,10 @@ #ifdef se401_DEBUG # define PDEBUG(level, fmt, args...) \ -if (debug >= level) info("[" __PRETTY_FUNCTION__ ":%d] " fmt, __LINE__ , ## args) +if (debug >= level) \ + info("[" __PRETTY_FUNCTION__ ":%d] " fmt, __LINE__ , ## args) #else -# define PDEBUG(level, fmt, args...) do {} while(0) +# define PDEBUG(level, fmt, args...) do {} while (0) #endif /* An almost drop-in replacement for sleep_on_interruptible */ |