diff options
author | Johannes Stezenbach <js@linuxtv.org> | 2005-07-07 20:58:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-07 21:23:58 -0400 |
commit | 7a2fa90fa8084846937aa194f8a40abfa99c692f (patch) | |
tree | 0ef157154967ce4f2e1e538f14d63754afa1c7b3 /drivers/media/dvb/ttpci/av7110_av.c | |
parent | 12ba05049f9060e21ed1f95e876d8d063d2575b2 (diff) |
[PATCH] dvb: ttpci: cleanup indentation + whitespace
Fix indentation and add some whitepsace between operators.
Signed-off-by: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/dvb/ttpci/av7110_av.c')
-rw-r--r-- | drivers/media/dvb/ttpci/av7110_av.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/media/dvb/ttpci/av7110_av.c b/drivers/media/dvb/ttpci/av7110_av.c index bbfad6def47..0696a5a4f85 100644 --- a/drivers/media/dvb/ttpci/av7110_av.c +++ b/drivers/media/dvb/ttpci/av7110_av.c | |||
@@ -1126,7 +1126,7 @@ static int dvb_video_ioctl(struct inode *inode, struct file *file, | |||
1126 | //note: arg is ignored by firmware | 1126 | //note: arg is ignored by firmware |
1127 | if (av7110->playing & RP_VIDEO) | 1127 | if (av7110->playing & RP_VIDEO) |
1128 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1128 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1129 | __Scan_I, 2, AV_PES, 0); | 1129 | __Scan_I, 2, AV_PES, 0); |
1130 | else | 1130 | else |
1131 | ret = vidcom(av7110, VIDEO_CMD_FFWD, arg); | 1131 | ret = vidcom(av7110, VIDEO_CMD_FFWD, arg); |
1132 | if (!ret) { | 1132 | if (!ret) { |
@@ -1164,15 +1164,15 @@ static int dvb_video_ioctl(struct inode *inode, struct file *file, | |||
1164 | 1164 | ||
1165 | if (av7110->playing == RP_AV) { | 1165 | if (av7110->playing == RP_AV) { |
1166 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1166 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1167 | __Play, 2, AV_PES, 0); | 1167 | __Play, 2, AV_PES, 0); |
1168 | if (ret) | 1168 | if (ret) |
1169 | break; | 1169 | break; |
1170 | if (av7110->trickmode == TRICK_FAST) | 1170 | if (av7110->trickmode == TRICK_FAST) |
1171 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1171 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1172 | __Scan_I, 2, AV_PES, 0); | 1172 | __Scan_I, 2, AV_PES, 0); |
1173 | if (av7110->trickmode == TRICK_SLOW) { | 1173 | if (av7110->trickmode == TRICK_SLOW) { |
1174 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1174 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1175 | __Slow, 2, 0, 0); | 1175 | __Slow, 2, 0, 0); |
1176 | if (!ret) | 1176 | if (!ret) |
1177 | ret = vidcom(av7110, VIDEO_CMD_SLOW, arg); | 1177 | ret = vidcom(av7110, VIDEO_CMD_SLOW, arg); |
1178 | } | 1178 | } |
@@ -1303,7 +1303,7 @@ static int dvb_audio_ioctl(struct inode *inode, struct file *file, | |||
1303 | av7110_ipack_reset(&av7110->ipack[0]); | 1303 | av7110_ipack_reset(&av7110->ipack[0]); |
1304 | if (av7110->playing == RP_AV) | 1304 | if (av7110->playing == RP_AV) |
1305 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, | 1305 | ret = av7110_fw_cmd(av7110, COMTYPE_REC_PLAY, |
1306 | __Play, 2, AV_PES, 0); | 1306 | __Play, 2, AV_PES, 0); |
1307 | break; | 1307 | break; |
1308 | case AUDIO_SET_ID: | 1308 | case AUDIO_SET_ID: |
1309 | 1309 | ||