summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-01-31 19:38:25 -0200
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-01-31 19:38:25 -0200
commitaa955f5fae7ab7791f7ae3d3a8cf61cf89060f4d (patch)
tree4a9bb0a3f235a7a4426ea76f10e84ca2e8ea33ef /linux/drivers/media/video
parent3c4275835ab5235f19f956b4f25e86bb4eef6437 (diff)
downloadmediapointer-dvb-s2-aa955f5fae7ab7791f7ae3d3a8cf61cf89060f4d.tar.gz
mediapointer-dvb-s2-aa955f5fae7ab7791f7ae3d3a8cf61cf89060f4d.tar.bz2
Last tvp5150 patch introduced lots of bad whitespaces.
From: Mauro Carvalho Chehab <mchehab@infradead.org> This patch removes all bad whitespaces introduced on tvp5150 Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r--linux/drivers/media/video/tvp5150.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/linux/drivers/media/video/tvp5150.c b/linux/drivers/media/video/tvp5150.c
index 97ca4bfbc..da9c9e944 100644
--- a/linux/drivers/media/video/tvp5150.c
+++ b/linux/drivers/media/video/tvp5150.c
@@ -1063,17 +1063,17 @@ static int tvp5150_command(struct i2c_client *c,
}
case DECODER_GET_STATUS:
{
- int *iarg = arg;
- int status;
- int res=0;
- status = tvp5150_read(c, 0x88);
- if(status&0x08){
- res |= DECODER_STATUS_COLOR;
- }
- if(status&0x04 && status&0x02){
- res |= DECODER_STATUS_GOOD;
- }
- *iarg=res;
+ int *iarg = arg;
+ int status;
+ int res=0;
+ status = tvp5150_read(c, 0x88);
+ if(status&0x08){
+ res |= DECODER_STATUS_COLOR;
+ }
+ if(status&0x04 && status&0x02){
+ res |= DECODER_STATUS_GOOD;
+ }
+ *iarg=res;
break;
}