diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-06-11 02:45:35 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-07-01 06:32:30 -0400 |
commit | 350f8ebab1a731913e391929f762315a6173b3bd (patch) | |
tree | ed73615b0186e1e77e135d63051f4b7bb3700c31 | |
parent | 7f8b9db7dde4ee70160993ea3fa22293b2c5c598 (diff) |
video/mbx: indent some if statements
Checkpatch.pl worries that we have left off the conditional bit because
it isn't indented correctly.
WARNING: suspect code indent for conditional statements (24, 24)
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/fbdev/mbx/mbxfb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbdev/mbx/mbxfb.c b/drivers/video/fbdev/mbx/mbxfb.c index 2bd52ed8832c..698df9543e30 100644 --- a/drivers/video/fbdev/mbx/mbxfb.c +++ b/drivers/video/fbdev/mbx/mbxfb.c | |||
@@ -628,14 +628,14 @@ static int mbxfb_ioctl(struct fb_info *info, unsigned int cmd, | |||
628 | case MBXFB_IOCS_PLANEORDER: | 628 | case MBXFB_IOCS_PLANEORDER: |
629 | if (copy_from_user(&porder, (void __user*)arg, | 629 | if (copy_from_user(&porder, (void __user*)arg, |
630 | sizeof(struct mbxfb_planeorder))) | 630 | sizeof(struct mbxfb_planeorder))) |
631 | return -EFAULT; | 631 | return -EFAULT; |
632 | 632 | ||
633 | return mbxfb_ioctl_planeorder(&porder); | 633 | return mbxfb_ioctl_planeorder(&porder); |
634 | 634 | ||
635 | case MBXFB_IOCS_ALPHA: | 635 | case MBXFB_IOCS_ALPHA: |
636 | if (copy_from_user(&alpha, (void __user*)arg, | 636 | if (copy_from_user(&alpha, (void __user*)arg, |
637 | sizeof(struct mbxfb_alphaCtl))) | 637 | sizeof(struct mbxfb_alphaCtl))) |
638 | return -EFAULT; | 638 | return -EFAULT; |
639 | 639 | ||
640 | return mbxfb_ioctl_alphactl(&alpha); | 640 | return mbxfb_ioctl_alphactl(&alpha); |
641 | 641 | ||