diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-09-23 01:40:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-26 21:34:29 -0400 |
commit | 807540baae406c84dcb9c1c8ef07a56d2d2ae84a (patch) | |
tree | ccd5c2cb57710dd6b73cf8df11eedf67abc14ae4 /drivers/net/wan/sdla.c | |
parent | cb4dfe562cac6fcb544df752e40c1d78000d0712 (diff) |
drivers/net: return operator cleanup
Change "return (EXPR);" to "return EXPR;"
return is not a function, parentheses are not required.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan/sdla.c')
-rw-r--r-- | drivers/net/wan/sdla.c | 108 |
1 files changed, 54 insertions, 54 deletions
diff --git a/drivers/net/wan/sdla.c b/drivers/net/wan/sdla.c index f4125da2762f..3f4e2b5684db 100644 --- a/drivers/net/wan/sdla.c +++ b/drivers/net/wan/sdla.c | |||
@@ -178,7 +178,7 @@ static char sdla_byte(struct net_device *dev, int addr) | |||
178 | byte = *temp; | 178 | byte = *temp; |
179 | spin_unlock_irqrestore(&sdla_lock, flags); | 179 | spin_unlock_irqrestore(&sdla_lock, flags); |
180 | 180 | ||
181 | return(byte); | 181 | return byte; |
182 | } | 182 | } |
183 | 183 | ||
184 | static void sdla_stop(struct net_device *dev) | 184 | static void sdla_stop(struct net_device *dev) |
@@ -267,7 +267,7 @@ static int sdla_z80_poll(struct net_device *dev, int z80_addr, int jiffs, char r | |||
267 | resp = *temp; | 267 | resp = *temp; |
268 | } | 268 | } |
269 | } | 269 | } |
270 | return(time_before(jiffies, done) ? jiffies - start : -1); | 270 | return time_before(jiffies, done) ? jiffies - start : -1; |
271 | } | 271 | } |
272 | 272 | ||
273 | /* constants for Z80 CPU speed */ | 273 | /* constants for Z80 CPU speed */ |
@@ -283,13 +283,13 @@ static int sdla_cpuspeed(struct net_device *dev, struct ifreq *ifr) | |||
283 | 283 | ||
284 | sdla_start(dev); | 284 | sdla_start(dev); |
285 | if (sdla_z80_poll(dev, 0, 3*HZ, Z80_READY, 0) < 0) | 285 | if (sdla_z80_poll(dev, 0, 3*HZ, Z80_READY, 0) < 0) |
286 | return(-EIO); | 286 | return -EIO; |
287 | 287 | ||
288 | data = LOADER_READY; | 288 | data = LOADER_READY; |
289 | sdla_write(dev, 0, &data, 1); | 289 | sdla_write(dev, 0, &data, 1); |
290 | 290 | ||
291 | if ((jiffs = sdla_z80_poll(dev, 0, 8*HZ, Z80_SCC_OK, Z80_SCC_BAD)) < 0) | 291 | if ((jiffs = sdla_z80_poll(dev, 0, 8*HZ, Z80_SCC_OK, Z80_SCC_BAD)) < 0) |
292 | return(-EIO); | 292 | return -EIO; |
293 | 293 | ||
294 | sdla_stop(dev); | 294 | sdla_stop(dev); |
295 | sdla_read(dev, 0, &data, 1); | 295 | sdla_read(dev, 0, &data, 1); |
@@ -297,11 +297,11 @@ static int sdla_cpuspeed(struct net_device *dev, struct ifreq *ifr) | |||
297 | if (data == Z80_SCC_BAD) | 297 | if (data == Z80_SCC_BAD) |
298 | { | 298 | { |
299 | printk("%s: SCC bad\n", dev->name); | 299 | printk("%s: SCC bad\n", dev->name); |
300 | return(-EIO); | 300 | return -EIO; |
301 | } | 301 | } |
302 | 302 | ||
303 | if (data != Z80_SCC_OK) | 303 | if (data != Z80_SCC_OK) |
304 | return(-EINVAL); | 304 | return -EINVAL; |
305 | 305 | ||
306 | if (jiffs < 165) | 306 | if (jiffs < 165) |
307 | ifr->ifr_mtu = SDLA_CPU_16M; | 307 | ifr->ifr_mtu = SDLA_CPU_16M; |
@@ -316,7 +316,7 @@ static int sdla_cpuspeed(struct net_device *dev, struct ifreq *ifr) | |||
316 | else | 316 | else |
317 | ifr->ifr_mtu = SDLA_CPU_3M; | 317 | ifr->ifr_mtu = SDLA_CPU_3M; |
318 | 318 | ||
319 | return(0); | 319 | return 0; |
320 | } | 320 | } |
321 | 321 | ||
322 | /************************************************ | 322 | /************************************************ |
@@ -493,7 +493,7 @@ static int sdla_cmd(struct net_device *dev, int cmd, short dlci, short flags, | |||
493 | if (ret != SDLA_RET_OK) | 493 | if (ret != SDLA_RET_OK) |
494 | sdla_errors(dev, cmd, dlci, ret, len, &status); | 494 | sdla_errors(dev, cmd, dlci, ret, len, &status); |
495 | 495 | ||
496 | return(ret); | 496 | return ret; |
497 | } | 497 | } |
498 | 498 | ||
499 | /*********************************************** | 499 | /*********************************************** |
@@ -516,14 +516,14 @@ static int sdla_activate(struct net_device *slave, struct net_device *master) | |||
516 | break; | 516 | break; |
517 | 517 | ||
518 | if (i == CONFIG_DLCI_MAX) | 518 | if (i == CONFIG_DLCI_MAX) |
519 | return(-ENODEV); | 519 | return -ENODEV; |
520 | 520 | ||
521 | flp->dlci[i] = abs(flp->dlci[i]); | 521 | flp->dlci[i] = abs(flp->dlci[i]); |
522 | 522 | ||
523 | if (netif_running(slave) && (flp->config.station == FRAD_STATION_NODE)) | 523 | if (netif_running(slave) && (flp->config.station == FRAD_STATION_NODE)) |
524 | sdla_cmd(slave, SDLA_ACTIVATE_DLCI, 0, 0, &flp->dlci[i], sizeof(short), NULL, NULL); | 524 | sdla_cmd(slave, SDLA_ACTIVATE_DLCI, 0, 0, &flp->dlci[i], sizeof(short), NULL, NULL); |
525 | 525 | ||
526 | return(0); | 526 | return 0; |
527 | } | 527 | } |
528 | 528 | ||
529 | static int sdla_deactivate(struct net_device *slave, struct net_device *master) | 529 | static int sdla_deactivate(struct net_device *slave, struct net_device *master) |
@@ -538,14 +538,14 @@ static int sdla_deactivate(struct net_device *slave, struct net_device *master) | |||
538 | break; | 538 | break; |
539 | 539 | ||
540 | if (i == CONFIG_DLCI_MAX) | 540 | if (i == CONFIG_DLCI_MAX) |
541 | return(-ENODEV); | 541 | return -ENODEV; |
542 | 542 | ||
543 | flp->dlci[i] = -abs(flp->dlci[i]); | 543 | flp->dlci[i] = -abs(flp->dlci[i]); |
544 | 544 | ||
545 | if (netif_running(slave) && (flp->config.station == FRAD_STATION_NODE)) | 545 | if (netif_running(slave) && (flp->config.station == FRAD_STATION_NODE)) |
546 | sdla_cmd(slave, SDLA_DEACTIVATE_DLCI, 0, 0, &flp->dlci[i], sizeof(short), NULL, NULL); | 546 | sdla_cmd(slave, SDLA_DEACTIVATE_DLCI, 0, 0, &flp->dlci[i], sizeof(short), NULL, NULL); |
547 | 547 | ||
548 | return(0); | 548 | return 0; |
549 | } | 549 | } |
550 | 550 | ||
551 | static int sdla_assoc(struct net_device *slave, struct net_device *master) | 551 | static int sdla_assoc(struct net_device *slave, struct net_device *master) |
@@ -554,7 +554,7 @@ static int sdla_assoc(struct net_device *slave, struct net_device *master) | |||
554 | int i; | 554 | int i; |
555 | 555 | ||
556 | if (master->type != ARPHRD_DLCI) | 556 | if (master->type != ARPHRD_DLCI) |
557 | return(-EINVAL); | 557 | return -EINVAL; |
558 | 558 | ||
559 | flp = netdev_priv(slave); | 559 | flp = netdev_priv(slave); |
560 | 560 | ||
@@ -563,11 +563,11 @@ static int sdla_assoc(struct net_device *slave, struct net_device *master) | |||
563 | if (!flp->master[i]) | 563 | if (!flp->master[i]) |
564 | break; | 564 | break; |
565 | if (abs(flp->dlci[i]) == *(short *)(master->dev_addr)) | 565 | if (abs(flp->dlci[i]) == *(short *)(master->dev_addr)) |
566 | return(-EADDRINUSE); | 566 | return -EADDRINUSE; |
567 | } | 567 | } |
568 | 568 | ||
569 | if (i == CONFIG_DLCI_MAX) | 569 | if (i == CONFIG_DLCI_MAX) |
570 | return(-EMLINK); /* #### Alan: Comments on this ?? */ | 570 | return -EMLINK; /* #### Alan: Comments on this ?? */ |
571 | 571 | ||
572 | 572 | ||
573 | flp->master[i] = master; | 573 | flp->master[i] = master; |
@@ -581,7 +581,7 @@ static int sdla_assoc(struct net_device *slave, struct net_device *master) | |||
581 | sdla_cmd(slave, SDLA_ADD_DLCI, 0, 0, master->dev_addr, sizeof(short), NULL, NULL); | 581 | sdla_cmd(slave, SDLA_ADD_DLCI, 0, 0, master->dev_addr, sizeof(short), NULL, NULL); |
582 | } | 582 | } |
583 | 583 | ||
584 | return(0); | 584 | return 0; |
585 | } | 585 | } |
586 | 586 | ||
587 | static int sdla_deassoc(struct net_device *slave, struct net_device *master) | 587 | static int sdla_deassoc(struct net_device *slave, struct net_device *master) |
@@ -596,7 +596,7 @@ static int sdla_deassoc(struct net_device *slave, struct net_device *master) | |||
596 | break; | 596 | break; |
597 | 597 | ||
598 | if (i == CONFIG_DLCI_MAX) | 598 | if (i == CONFIG_DLCI_MAX) |
599 | return(-ENODEV); | 599 | return -ENODEV; |
600 | 600 | ||
601 | flp->master[i] = NULL; | 601 | flp->master[i] = NULL; |
602 | flp->dlci[i] = 0; | 602 | flp->dlci[i] = 0; |
@@ -609,7 +609,7 @@ static int sdla_deassoc(struct net_device *slave, struct net_device *master) | |||
609 | sdla_cmd(slave, SDLA_DELETE_DLCI, 0, 0, master->dev_addr, sizeof(short), NULL, NULL); | 609 | sdla_cmd(slave, SDLA_DELETE_DLCI, 0, 0, master->dev_addr, sizeof(short), NULL, NULL); |
610 | } | 610 | } |
611 | 611 | ||
612 | return(0); | 612 | return 0; |
613 | } | 613 | } |
614 | 614 | ||
615 | static int sdla_dlci_conf(struct net_device *slave, struct net_device *master, int get) | 615 | static int sdla_dlci_conf(struct net_device *slave, struct net_device *master, int get) |
@@ -626,7 +626,7 @@ static int sdla_dlci_conf(struct net_device *slave, struct net_device *master, i | |||
626 | break; | 626 | break; |
627 | 627 | ||
628 | if (i == CONFIG_DLCI_MAX) | 628 | if (i == CONFIG_DLCI_MAX) |
629 | return(-ENODEV); | 629 | return -ENODEV; |
630 | 630 | ||
631 | dlp = netdev_priv(master); | 631 | dlp = netdev_priv(master); |
632 | 632 | ||
@@ -641,7 +641,7 @@ static int sdla_dlci_conf(struct net_device *slave, struct net_device *master, i | |||
641 | &dlp->config, sizeof(struct dlci_conf) - 4 * sizeof(short), NULL, NULL); | 641 | &dlp->config, sizeof(struct dlci_conf) - 4 * sizeof(short), NULL, NULL); |
642 | } | 642 | } |
643 | 643 | ||
644 | return(ret == SDLA_RET_OK ? 0 : -EIO); | 644 | return ret == SDLA_RET_OK ? 0 : -EIO; |
645 | } | 645 | } |
646 | 646 | ||
647 | /************************** | 647 | /************************** |
@@ -986,7 +986,7 @@ static int sdla_close(struct net_device *dev) | |||
986 | 986 | ||
987 | netif_stop_queue(dev); | 987 | netif_stop_queue(dev); |
988 | 988 | ||
989 | return(0); | 989 | return 0; |
990 | } | 990 | } |
991 | 991 | ||
992 | struct conf_data { | 992 | struct conf_data { |
@@ -1006,10 +1006,10 @@ static int sdla_open(struct net_device *dev) | |||
1006 | flp = netdev_priv(dev); | 1006 | flp = netdev_priv(dev); |
1007 | 1007 | ||
1008 | if (!flp->initialized) | 1008 | if (!flp->initialized) |
1009 | return(-EPERM); | 1009 | return -EPERM; |
1010 | 1010 | ||
1011 | if (!flp->configured) | 1011 | if (!flp->configured) |
1012 | return(-EPERM); | 1012 | return -EPERM; |
1013 | 1013 | ||
1014 | /* time to send in the configuration */ | 1014 | /* time to send in the configuration */ |
1015 | len = 0; | 1015 | len = 0; |
@@ -1087,7 +1087,7 @@ static int sdla_open(struct net_device *dev) | |||
1087 | 1087 | ||
1088 | netif_start_queue(dev); | 1088 | netif_start_queue(dev); |
1089 | 1089 | ||
1090 | return(0); | 1090 | return 0; |
1091 | } | 1091 | } |
1092 | 1092 | ||
1093 | static int sdla_config(struct net_device *dev, struct frad_conf __user *conf, int get) | 1093 | static int sdla_config(struct net_device *dev, struct frad_conf __user *conf, int get) |
@@ -1098,48 +1098,48 @@ static int sdla_config(struct net_device *dev, struct frad_conf __user *conf, in | |||
1098 | short size; | 1098 | short size; |
1099 | 1099 | ||
1100 | if (dev->type == 0xFFFF) | 1100 | if (dev->type == 0xFFFF) |
1101 | return(-EUNATCH); | 1101 | return -EUNATCH; |
1102 | 1102 | ||
1103 | flp = netdev_priv(dev); | 1103 | flp = netdev_priv(dev); |
1104 | 1104 | ||
1105 | if (!get) | 1105 | if (!get) |
1106 | { | 1106 | { |
1107 | if (netif_running(dev)) | 1107 | if (netif_running(dev)) |
1108 | return(-EBUSY); | 1108 | return -EBUSY; |
1109 | 1109 | ||
1110 | if(copy_from_user(&data.config, conf, sizeof(struct frad_conf))) | 1110 | if(copy_from_user(&data.config, conf, sizeof(struct frad_conf))) |
1111 | return -EFAULT; | 1111 | return -EFAULT; |
1112 | 1112 | ||
1113 | if (data.config.station & ~FRAD_STATION_NODE) | 1113 | if (data.config.station & ~FRAD_STATION_NODE) |
1114 | return(-EINVAL); | 1114 | return -EINVAL; |
1115 | 1115 | ||
1116 | if (data.config.flags & ~FRAD_VALID_FLAGS) | 1116 | if (data.config.flags & ~FRAD_VALID_FLAGS) |
1117 | return(-EINVAL); | 1117 | return -EINVAL; |
1118 | 1118 | ||
1119 | if ((data.config.kbaud < 0) || | 1119 | if ((data.config.kbaud < 0) || |
1120 | ((data.config.kbaud > 128) && (flp->type != SDLA_S508))) | 1120 | ((data.config.kbaud > 128) && (flp->type != SDLA_S508))) |
1121 | return(-EINVAL); | 1121 | return -EINVAL; |
1122 | 1122 | ||
1123 | if (data.config.clocking & ~(FRAD_CLOCK_INT | SDLA_S508_PORT_RS232)) | 1123 | if (data.config.clocking & ~(FRAD_CLOCK_INT | SDLA_S508_PORT_RS232)) |
1124 | return(-EINVAL); | 1124 | return -EINVAL; |
1125 | 1125 | ||
1126 | if ((data.config.mtu < 0) || (data.config.mtu > SDLA_MAX_MTU)) | 1126 | if ((data.config.mtu < 0) || (data.config.mtu > SDLA_MAX_MTU)) |
1127 | return(-EINVAL); | 1127 | return -EINVAL; |
1128 | 1128 | ||
1129 | if ((data.config.T391 < 5) || (data.config.T391 > 30)) | 1129 | if ((data.config.T391 < 5) || (data.config.T391 > 30)) |
1130 | return(-EINVAL); | 1130 | return -EINVAL; |
1131 | 1131 | ||
1132 | if ((data.config.T392 < 5) || (data.config.T392 > 30)) | 1132 | if ((data.config.T392 < 5) || (data.config.T392 > 30)) |
1133 | return(-EINVAL); | 1133 | return -EINVAL; |
1134 | 1134 | ||
1135 | if ((data.config.N391 < 1) || (data.config.N391 > 255)) | 1135 | if ((data.config.N391 < 1) || (data.config.N391 > 255)) |
1136 | return(-EINVAL); | 1136 | return -EINVAL; |
1137 | 1137 | ||
1138 | if ((data.config.N392 < 1) || (data.config.N392 > 10)) | 1138 | if ((data.config.N392 < 1) || (data.config.N392 > 10)) |
1139 | return(-EINVAL); | 1139 | return -EINVAL; |
1140 | 1140 | ||
1141 | if ((data.config.N393 < 1) || (data.config.N393 > 10)) | 1141 | if ((data.config.N393 < 1) || (data.config.N393 > 10)) |
1142 | return(-EINVAL); | 1142 | return -EINVAL; |
1143 | 1143 | ||
1144 | memcpy(&flp->config, &data.config, sizeof(struct frad_conf)); | 1144 | memcpy(&flp->config, &data.config, sizeof(struct frad_conf)); |
1145 | flp->config.flags |= SDLA_DIRECT_RECV; | 1145 | flp->config.flags |= SDLA_DIRECT_RECV; |
@@ -1171,7 +1171,7 @@ static int sdla_config(struct net_device *dev, struct frad_conf __user *conf, in | |||
1171 | { | 1171 | { |
1172 | size = sizeof(data); | 1172 | size = sizeof(data); |
1173 | if (sdla_cmd(dev, SDLA_READ_DLCI_CONFIGURATION, 0, 0, NULL, 0, &data, &size) != SDLA_RET_OK) | 1173 | if (sdla_cmd(dev, SDLA_READ_DLCI_CONFIGURATION, 0, 0, NULL, 0, &data, &size) != SDLA_RET_OK) |
1174 | return(-EIO); | 1174 | return -EIO; |
1175 | } | 1175 | } |
1176 | else | 1176 | else |
1177 | if (flp->configured) | 1177 | if (flp->configured) |
@@ -1185,7 +1185,7 @@ static int sdla_config(struct net_device *dev, struct frad_conf __user *conf, in | |||
1185 | return copy_to_user(conf, &data.config, sizeof(struct frad_conf))?-EFAULT:0; | 1185 | return copy_to_user(conf, &data.config, sizeof(struct frad_conf))?-EFAULT:0; |
1186 | } | 1186 | } |
1187 | 1187 | ||
1188 | return(0); | 1188 | return 0; |
1189 | } | 1189 | } |
1190 | 1190 | ||
1191 | static int sdla_xfer(struct net_device *dev, struct sdla_mem __user *info, int read) | 1191 | static int sdla_xfer(struct net_device *dev, struct sdla_mem __user *info, int read) |
@@ -1200,7 +1200,7 @@ static int sdla_xfer(struct net_device *dev, struct sdla_mem __user *info, int r | |||
1200 | { | 1200 | { |
1201 | temp = kzalloc(mem.len, GFP_KERNEL); | 1201 | temp = kzalloc(mem.len, GFP_KERNEL); |
1202 | if (!temp) | 1202 | if (!temp) |
1203 | return(-ENOMEM); | 1203 | return -ENOMEM; |
1204 | sdla_read(dev, mem.addr, temp, mem.len); | 1204 | sdla_read(dev, mem.addr, temp, mem.len); |
1205 | if(copy_to_user(mem.data, temp, mem.len)) | 1205 | if(copy_to_user(mem.data, temp, mem.len)) |
1206 | { | 1206 | { |
@@ -1217,7 +1217,7 @@ static int sdla_xfer(struct net_device *dev, struct sdla_mem __user *info, int r | |||
1217 | sdla_write(dev, mem.addr, temp, mem.len); | 1217 | sdla_write(dev, mem.addr, temp, mem.len); |
1218 | kfree(temp); | 1218 | kfree(temp); |
1219 | } | 1219 | } |
1220 | return(0); | 1220 | return 0; |
1221 | } | 1221 | } |
1222 | 1222 | ||
1223 | static int sdla_reconfig(struct net_device *dev) | 1223 | static int sdla_reconfig(struct net_device *dev) |
@@ -1241,7 +1241,7 @@ static int sdla_reconfig(struct net_device *dev) | |||
1241 | sdla_cmd(dev, SDLA_SET_DLCI_CONFIGURATION, 0, 0, &data, len, NULL, NULL); | 1241 | sdla_cmd(dev, SDLA_SET_DLCI_CONFIGURATION, 0, 0, &data, len, NULL, NULL); |
1242 | sdla_cmd(dev, SDLA_ENABLE_COMMUNICATIONS, 0, 0, NULL, 0, NULL, NULL); | 1242 | sdla_cmd(dev, SDLA_ENABLE_COMMUNICATIONS, 0, 0, NULL, 0, NULL, NULL); |
1243 | 1243 | ||
1244 | return(0); | 1244 | return 0; |
1245 | } | 1245 | } |
1246 | 1246 | ||
1247 | static int sdla_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) | 1247 | static int sdla_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) |
@@ -1254,20 +1254,20 @@ static int sdla_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) | |||
1254 | flp = netdev_priv(dev); | 1254 | flp = netdev_priv(dev); |
1255 | 1255 | ||
1256 | if (!flp->initialized) | 1256 | if (!flp->initialized) |
1257 | return(-EINVAL); | 1257 | return -EINVAL; |
1258 | 1258 | ||
1259 | switch (cmd) | 1259 | switch (cmd) |
1260 | { | 1260 | { |
1261 | case FRAD_GET_CONF: | 1261 | case FRAD_GET_CONF: |
1262 | case FRAD_SET_CONF: | 1262 | case FRAD_SET_CONF: |
1263 | return(sdla_config(dev, ifr->ifr_data, cmd == FRAD_GET_CONF)); | 1263 | return sdla_config(dev, ifr->ifr_data, cmd == FRAD_GET_CONF); |
1264 | 1264 | ||
1265 | case SDLA_IDENTIFY: | 1265 | case SDLA_IDENTIFY: |
1266 | ifr->ifr_flags = flp->type; | 1266 | ifr->ifr_flags = flp->type; |
1267 | break; | 1267 | break; |
1268 | 1268 | ||
1269 | case SDLA_CPUSPEED: | 1269 | case SDLA_CPUSPEED: |
1270 | return(sdla_cpuspeed(dev, ifr)); | 1270 | return sdla_cpuspeed(dev, ifr); |
1271 | 1271 | ||
1272 | /* ========================================================== | 1272 | /* ========================================================== |
1273 | NOTE: This is rather a useless action right now, as the | 1273 | NOTE: This is rather a useless action right now, as the |
@@ -1277,7 +1277,7 @@ NOTE: This is rather a useless action right now, as the | |||
1277 | ============================================================*/ | 1277 | ============================================================*/ |
1278 | case SDLA_PROTOCOL: | 1278 | case SDLA_PROTOCOL: |
1279 | if (flp->configured) | 1279 | if (flp->configured) |
1280 | return(-EALREADY); | 1280 | return -EALREADY; |
1281 | 1281 | ||
1282 | switch (ifr->ifr_flags) | 1282 | switch (ifr->ifr_flags) |
1283 | { | 1283 | { |
@@ -1285,7 +1285,7 @@ NOTE: This is rather a useless action right now, as the | |||
1285 | dev->type = ifr->ifr_flags; | 1285 | dev->type = ifr->ifr_flags; |
1286 | break; | 1286 | break; |
1287 | default: | 1287 | default: |
1288 | return(-ENOPROTOOPT); | 1288 | return -ENOPROTOOPT; |
1289 | } | 1289 | } |
1290 | break; | 1290 | break; |
1291 | 1291 | ||
@@ -1297,7 +1297,7 @@ NOTE: This is rather a useless action right now, as the | |||
1297 | case SDLA_READMEM: | 1297 | case SDLA_READMEM: |
1298 | if(!capable(CAP_SYS_RAWIO)) | 1298 | if(!capable(CAP_SYS_RAWIO)) |
1299 | return -EPERM; | 1299 | return -EPERM; |
1300 | return(sdla_xfer(dev, ifr->ifr_data, cmd == SDLA_READMEM)); | 1300 | return sdla_xfer(dev, ifr->ifr_data, cmd == SDLA_READMEM); |
1301 | 1301 | ||
1302 | case SDLA_START: | 1302 | case SDLA_START: |
1303 | sdla_start(dev); | 1303 | sdla_start(dev); |
@@ -1308,9 +1308,9 @@ NOTE: This is rather a useless action right now, as the | |||
1308 | break; | 1308 | break; |
1309 | 1309 | ||
1310 | default: | 1310 | default: |
1311 | return(-EOPNOTSUPP); | 1311 | return -EOPNOTSUPP; |
1312 | } | 1312 | } |
1313 | return(0); | 1313 | return 0; |
1314 | } | 1314 | } |
1315 | 1315 | ||
1316 | static int sdla_change_mtu(struct net_device *dev, int new_mtu) | 1316 | static int sdla_change_mtu(struct net_device *dev, int new_mtu) |
@@ -1320,10 +1320,10 @@ static int sdla_change_mtu(struct net_device *dev, int new_mtu) | |||
1320 | flp = netdev_priv(dev); | 1320 | flp = netdev_priv(dev); |
1321 | 1321 | ||
1322 | if (netif_running(dev)) | 1322 | if (netif_running(dev)) |
1323 | return(-EBUSY); | 1323 | return -EBUSY; |
1324 | 1324 | ||
1325 | /* for now, you can't change the MTU! */ | 1325 | /* for now, you can't change the MTU! */ |
1326 | return(-EOPNOTSUPP); | 1326 | return -EOPNOTSUPP; |
1327 | } | 1327 | } |
1328 | 1328 | ||
1329 | static int sdla_set_config(struct net_device *dev, struct ifmap *map) | 1329 | static int sdla_set_config(struct net_device *dev, struct ifmap *map) |
@@ -1337,18 +1337,18 @@ static int sdla_set_config(struct net_device *dev, struct ifmap *map) | |||
1337 | flp = netdev_priv(dev); | 1337 | flp = netdev_priv(dev); |
1338 | 1338 | ||
1339 | if (flp->initialized) | 1339 | if (flp->initialized) |
1340 | return(-EINVAL); | 1340 | return -EINVAL; |
1341 | 1341 | ||
1342 | for(i=0; i < ARRAY_SIZE(valid_port); i++) | 1342 | for(i=0; i < ARRAY_SIZE(valid_port); i++) |
1343 | if (valid_port[i] == map->base_addr) | 1343 | if (valid_port[i] == map->base_addr) |
1344 | break; | 1344 | break; |
1345 | 1345 | ||
1346 | if (i == ARRAY_SIZE(valid_port)) | 1346 | if (i == ARRAY_SIZE(valid_port)) |
1347 | return(-EINVAL); | 1347 | return -EINVAL; |
1348 | 1348 | ||
1349 | if (!request_region(map->base_addr, SDLA_IO_EXTENTS, dev->name)){ | 1349 | if (!request_region(map->base_addr, SDLA_IO_EXTENTS, dev->name)){ |
1350 | printk(KERN_WARNING "SDLA: io-port 0x%04lx in use\n", dev->base_addr); | 1350 | printk(KERN_WARNING "SDLA: io-port 0x%04lx in use\n", dev->base_addr); |
1351 | return(-EINVAL); | 1351 | return -EINVAL; |
1352 | } | 1352 | } |
1353 | base = map->base_addr; | 1353 | base = map->base_addr; |
1354 | 1354 | ||