Commit 48b3d3ef authored by Rudy Matela's avatar Rudy Matela Committed by David S. Miller

wan: Frame Relay/DLCI coding style corrections.

Added a space separating some keywords (if/while) from the following
parenthesis to conform to the CodingStyle.
Signed-off-by: default avatarRudy Matela <rudy.matela@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e7473f12
...@@ -77,7 +77,7 @@ static int dlci_header(struct sk_buff *skb, struct net_device *dev, ...@@ -77,7 +77,7 @@ static int dlci_header(struct sk_buff *skb, struct net_device *dev,
dlp = netdev_priv(dev); dlp = netdev_priv(dev);
hdr.control = FRAD_I_UI; hdr.control = FRAD_I_UI;
switch(type) switch (type)
{ {
case ETH_P_IP: case ETH_P_IP:
hdr.IP_NLPID = FRAD_P_IP; hdr.IP_NLPID = FRAD_P_IP;
...@@ -130,7 +130,7 @@ static void dlci_receive(struct sk_buff *skb, struct net_device *dev) ...@@ -130,7 +130,7 @@ static void dlci_receive(struct sk_buff *skb, struct net_device *dev)
dev->stats.rx_errors++; dev->stats.rx_errors++;
} }
else else
switch(hdr->IP_NLPID) switch (hdr->IP_NLPID)
{ {
case FRAD_P_PADDING: case FRAD_P_PADDING:
if (hdr->NLPID != FRAD_P_SNAP) if (hdr->NLPID != FRAD_P_SNAP)
...@@ -208,7 +208,7 @@ static int dlci_config(struct net_device *dev, struct dlci_conf __user *conf, in ...@@ -208,7 +208,7 @@ static int dlci_config(struct net_device *dev, struct dlci_conf __user *conf, in
if (!get) if (!get)
{ {
if(copy_from_user(&config, conf, sizeof(struct dlci_conf))) if (copy_from_user(&config, conf, sizeof(struct dlci_conf)))
return -EFAULT; return -EFAULT;
if (config.flags & ~DLCI_VALID_FLAGS) if (config.flags & ~DLCI_VALID_FLAGS)
return(-EINVAL); return(-EINVAL);
...@@ -222,7 +222,7 @@ static int dlci_config(struct net_device *dev, struct dlci_conf __user *conf, in ...@@ -222,7 +222,7 @@ static int dlci_config(struct net_device *dev, struct dlci_conf __user *conf, in
if (get) if (get)
{ {
if(copy_to_user(conf, &dlp->config, sizeof(struct dlci_conf))) if (copy_to_user(conf, &dlp->config, sizeof(struct dlci_conf)))
return -EFAULT; return -EFAULT;
} }
...@@ -238,7 +238,7 @@ static int dlci_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) ...@@ -238,7 +238,7 @@ static int dlci_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
dlp = netdev_priv(dev); dlp = netdev_priv(dev);
switch(cmd) switch (cmd)
{ {
case DLCI_GET_SLAVE: case DLCI_GET_SLAVE:
if (!*(short *)(dev->dev_addr)) if (!*(short *)(dev->dev_addr))
...@@ -417,7 +417,7 @@ static int dlci_ioctl(unsigned int cmd, void __user *arg) ...@@ -417,7 +417,7 @@ static int dlci_ioctl(unsigned int cmd, void __user *arg)
if (!capable(CAP_NET_ADMIN)) if (!capable(CAP_NET_ADMIN))
return(-EPERM); return(-EPERM);
if(copy_from_user(&add, arg, sizeof(struct dlci_add))) if (copy_from_user(&add, arg, sizeof(struct dlci_add)))
return -EFAULT; return -EFAULT;
switch (cmd) switch (cmd)
...@@ -426,7 +426,7 @@ static int dlci_ioctl(unsigned int cmd, void __user *arg) ...@@ -426,7 +426,7 @@ static int dlci_ioctl(unsigned int cmd, void __user *arg)
err = dlci_add(&add); err = dlci_add(&add);
if (!err) if (!err)
if(copy_to_user(arg, &add, sizeof(struct dlci_add))) if (copy_to_user(arg, &add, sizeof(struct dlci_add)))
return -EFAULT; return -EFAULT;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment