Staging: kpc2000: kpc_dma: Resolve code indent and trailing statements on next line...
authorVandana BN <bnvandana@gmail.com>
Mon, 13 May 2019 13:43:23 +0000 (19:13 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 May 2019 05:40:40 +0000 (07:40 +0200)
This patch fixes code indentaion error reported by checkpath
ERROR: switch and case should be at the same indent
ERROR: trailing statements should be on next line

Signed-off-by: Vandana BN <bnvandana@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/kpc2000/kpc_dma/fileops.c

index 3e3f454..48819b0 100644 (file)
@@ -395,10 +395,14 @@ long  kpc_dma_ioctl(struct file *filp, unsigned int ioctl_num, unsigned long ioc
        dev_dbg(&priv->ldev->pldev->dev, "kpc_dma_ioctl(filp = [%p], ioctl_num = 0x%x, ioctl_param = 0x%lx) priv = [%p], ldev = [%p]\n", filp, ioctl_num, ioctl_param, priv, priv->ldev);
 
        switch (ioctl_num) {
-               case KND_IOCTL_SET_CARD_ADDR:           priv->card_addr  = ioctl_param; return priv->card_addr;
-               case KND_IOCTL_SET_USER_CTL:            priv->user_ctl   = ioctl_param; return priv->user_ctl;
-               case KND_IOCTL_SET_USER_CTL_LAST:       priv->user_ctl_last = ioctl_param; return priv->user_ctl_last;
-               case KND_IOCTL_GET_USER_STS:            return priv->user_sts;
+       case KND_IOCTL_SET_CARD_ADDR:
+               priv->card_addr  = ioctl_param; return priv->card_addr;
+       case KND_IOCTL_SET_USER_CTL:
+               priv->user_ctl   = ioctl_param; return priv->user_ctl;
+       case KND_IOCTL_SET_USER_CTL_LAST:
+               priv->user_ctl_last = ioctl_param; return priv->user_ctl_last;
+       case KND_IOCTL_GET_USER_STS:
+               return priv->user_sts;
        }
 
        return -ENOTTY;