diff options
author | Joe Perches <joe@perches.com> | 2010-05-14 03:19:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-14 03:19:28 -0400 |
commit | a4b770972b8f819e408d7cc3ae9637e15bff62f6 (patch) | |
tree | 62e3c413b084c106d750cf6cc0701709cde30100 /drivers/net/stmmac | |
parent | 21ce849ba5cc178740c6532ba3dded852296ad91 (diff) |
drivers/net: Remove unnecessary returns from void function()s
This patch removes from drivers/net/ all the unnecessary
return; statements that precede the last closing brace of
void functions.
It does not remove the returns that are immediately
preceded by a label as gcc doesn't like that.
It also does not remove null void functions with return.
Done via:
$ grep -rP --include=*.[ch] -l "return;\n}" net/ | \
xargs perl -i -e 'local $/ ; while (<>) { s/\n[ \t\n]+return;\n}/\n}/g; print; }'
with some cleanups by hand.
Compile tested x86 allmodconfig only.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/stmmac')
-rw-r--r-- | drivers/net/stmmac/dwmac1000_core.c | 8 | ||||
-rw-r--r-- | drivers/net/stmmac/dwmac1000_dma.c | 2 | ||||
-rw-r--r-- | drivers/net/stmmac/dwmac100_core.c | 5 | ||||
-rw-r--r-- | drivers/net/stmmac/dwmac100_dma.c | 4 | ||||
-rw-r--r-- | drivers/net/stmmac/dwmac_lib.c | 12 | ||||
-rw-r--r-- | drivers/net/stmmac/enh_desc.c | 5 | ||||
-rw-r--r-- | drivers/net/stmmac/norm_desc.c | 4 | ||||
-rw-r--r-- | drivers/net/stmmac/stmmac_ethtool.c | 7 | ||||
-rw-r--r-- | drivers/net/stmmac/stmmac_main.c | 22 | ||||
-rw-r--r-- | drivers/net/stmmac/stmmac_timer.c | 6 |
10 files changed, 0 insertions, 75 deletions
diff --git a/drivers/net/stmmac/dwmac1000_core.c b/drivers/net/stmmac/dwmac1000_core.c index 0aa89ae9b8e9..917b4e16923b 100644 --- a/drivers/net/stmmac/dwmac1000_core.c +++ b/drivers/net/stmmac/dwmac1000_core.c | |||
@@ -48,7 +48,6 @@ static void dwmac1000_core_init(unsigned long ioaddr) | |||
48 | /* Tag detection without filtering */ | 48 | /* Tag detection without filtering */ |
49 | writel(0x0, ioaddr + GMAC_VLAN_TAG); | 49 | writel(0x0, ioaddr + GMAC_VLAN_TAG); |
50 | #endif | 50 | #endif |
51 | return; | ||
52 | } | 51 | } |
53 | 52 | ||
54 | static void dwmac1000_dump_regs(unsigned long ioaddr) | 53 | static void dwmac1000_dump_regs(unsigned long ioaddr) |
@@ -61,7 +60,6 @@ static void dwmac1000_dump_regs(unsigned long ioaddr) | |||
61 | pr_info("\tReg No. %d (offset 0x%x): 0x%08x\n", i, | 60 | pr_info("\tReg No. %d (offset 0x%x): 0x%08x\n", i, |
62 | offset, readl(ioaddr + offset)); | 61 | offset, readl(ioaddr + offset)); |
63 | } | 62 | } |
64 | return; | ||
65 | } | 63 | } |
66 | 64 | ||
67 | static void dwmac1000_set_umac_addr(unsigned long ioaddr, unsigned char *addr, | 65 | static void dwmac1000_set_umac_addr(unsigned long ioaddr, unsigned char *addr, |
@@ -139,8 +137,6 @@ static void dwmac1000_set_filter(struct net_device *dev) | |||
139 | CHIP_DBG(KERN_INFO "\tFrame Filter reg: 0x%08x\n\tHash regs: " | 137 | CHIP_DBG(KERN_INFO "\tFrame Filter reg: 0x%08x\n\tHash regs: " |
140 | "HI 0x%08x, LO 0x%08x\n", readl(ioaddr + GMAC_FRAME_FILTER), | 138 | "HI 0x%08x, LO 0x%08x\n", readl(ioaddr + GMAC_FRAME_FILTER), |
141 | readl(ioaddr + GMAC_HASH_HIGH), readl(ioaddr + GMAC_HASH_LOW)); | 139 | readl(ioaddr + GMAC_HASH_HIGH), readl(ioaddr + GMAC_HASH_LOW)); |
142 | |||
143 | return; | ||
144 | } | 140 | } |
145 | 141 | ||
146 | static void dwmac1000_flow_ctrl(unsigned long ioaddr, unsigned int duplex, | 142 | static void dwmac1000_flow_ctrl(unsigned long ioaddr, unsigned int duplex, |
@@ -164,7 +160,6 @@ static void dwmac1000_flow_ctrl(unsigned long ioaddr, unsigned int duplex, | |||
164 | } | 160 | } |
165 | 161 | ||
166 | writel(flow, ioaddr + GMAC_FLOW_CTRL); | 162 | writel(flow, ioaddr + GMAC_FLOW_CTRL); |
167 | return; | ||
168 | } | 163 | } |
169 | 164 | ||
170 | static void dwmac1000_pmt(unsigned long ioaddr, unsigned long mode) | 165 | static void dwmac1000_pmt(unsigned long ioaddr, unsigned long mode) |
@@ -180,7 +175,6 @@ static void dwmac1000_pmt(unsigned long ioaddr, unsigned long mode) | |||
180 | } | 175 | } |
181 | 176 | ||
182 | writel(pmt, ioaddr + GMAC_PMT); | 177 | writel(pmt, ioaddr + GMAC_PMT); |
183 | return; | ||
184 | } | 178 | } |
185 | 179 | ||
186 | 180 | ||
@@ -204,8 +198,6 @@ static void dwmac1000_irq_status(unsigned long ioaddr) | |||
204 | * status register. */ | 198 | * status register. */ |
205 | readl(ioaddr + GMAC_PMT); | 199 | readl(ioaddr + GMAC_PMT); |
206 | } | 200 | } |
207 | |||
208 | return; | ||
209 | } | 201 | } |
210 | 202 | ||
211 | struct stmmac_ops dwmac1000_ops = { | 203 | struct stmmac_ops dwmac1000_ops = { |
diff --git a/drivers/net/stmmac/dwmac1000_dma.c b/drivers/net/stmmac/dwmac1000_dma.c index a547aa99e114..415805057cb0 100644 --- a/drivers/net/stmmac/dwmac1000_dma.c +++ b/drivers/net/stmmac/dwmac1000_dma.c | |||
@@ -107,7 +107,6 @@ static void dwmac1000_dma_operation_mode(unsigned long ioaddr, int txmode, | |||
107 | } | 107 | } |
108 | 108 | ||
109 | writel(csr6, ioaddr + DMA_CONTROL); | 109 | writel(csr6, ioaddr + DMA_CONTROL); |
110 | return; | ||
111 | } | 110 | } |
112 | 111 | ||
113 | /* Not yet implemented --- no RMON module */ | 112 | /* Not yet implemented --- no RMON module */ |
@@ -129,7 +128,6 @@ static void dwmac1000_dump_dma_regs(unsigned long ioaddr) | |||
129 | readl(ioaddr + DMA_BUS_MODE + offset)); | 128 | readl(ioaddr + DMA_BUS_MODE + offset)); |
130 | } | 129 | } |
131 | } | 130 | } |
132 | return; | ||
133 | } | 131 | } |
134 | 132 | ||
135 | struct stmmac_dma_ops dwmac1000_dma_ops = { | 133 | struct stmmac_dma_ops dwmac1000_dma_ops = { |
diff --git a/drivers/net/stmmac/dwmac100_core.c b/drivers/net/stmmac/dwmac100_core.c index fab14a4cb14c..6f270a0e151a 100644 --- a/drivers/net/stmmac/dwmac100_core.c +++ b/drivers/net/stmmac/dwmac100_core.c | |||
@@ -40,7 +40,6 @@ static void dwmac100_core_init(unsigned long ioaddr) | |||
40 | #ifdef STMMAC_VLAN_TAG_USED | 40 | #ifdef STMMAC_VLAN_TAG_USED |
41 | writel(ETH_P_8021Q, ioaddr + MAC_VLAN1); | 41 | writel(ETH_P_8021Q, ioaddr + MAC_VLAN1); |
42 | #endif | 42 | #endif |
43 | return; | ||
44 | } | 43 | } |
45 | 44 | ||
46 | static void dwmac100_dump_mac_regs(unsigned long ioaddr) | 45 | static void dwmac100_dump_mac_regs(unsigned long ioaddr) |
@@ -76,7 +75,6 @@ static void dwmac100_dump_mac_regs(unsigned long ioaddr) | |||
76 | MMC_HIGH_INTR_MASK, readl(ioaddr + MMC_HIGH_INTR_MASK)); | 75 | MMC_HIGH_INTR_MASK, readl(ioaddr + MMC_HIGH_INTR_MASK)); |
77 | pr_info("\t MMC Low Interrupt Mask (offset 0x%x): 0x%08x\n", | 76 | pr_info("\t MMC Low Interrupt Mask (offset 0x%x): 0x%08x\n", |
78 | MMC_LOW_INTR_MASK, readl(ioaddr + MMC_LOW_INTR_MASK)); | 77 | MMC_LOW_INTR_MASK, readl(ioaddr + MMC_LOW_INTR_MASK)); |
79 | return; | ||
80 | } | 78 | } |
81 | 79 | ||
82 | static void dwmac100_irq_status(unsigned long ioaddr) | 80 | static void dwmac100_irq_status(unsigned long ioaddr) |
@@ -145,7 +143,6 @@ static void dwmac100_set_filter(struct net_device *dev) | |||
145 | "HI 0x%08x, LO 0x%08x\n", | 143 | "HI 0x%08x, LO 0x%08x\n", |
146 | __func__, readl(ioaddr + MAC_CONTROL), | 144 | __func__, readl(ioaddr + MAC_CONTROL), |
147 | readl(ioaddr + MAC_HASH_HIGH), readl(ioaddr + MAC_HASH_LOW)); | 145 | readl(ioaddr + MAC_HASH_HIGH), readl(ioaddr + MAC_HASH_LOW)); |
148 | return; | ||
149 | } | 146 | } |
150 | 147 | ||
151 | static void dwmac100_flow_ctrl(unsigned long ioaddr, unsigned int duplex, | 148 | static void dwmac100_flow_ctrl(unsigned long ioaddr, unsigned int duplex, |
@@ -156,8 +153,6 @@ static void dwmac100_flow_ctrl(unsigned long ioaddr, unsigned int duplex, | |||
156 | if (duplex) | 153 | if (duplex) |
157 | flow |= (pause_time << MAC_FLOW_CTRL_PT_SHIFT); | 154 | flow |= (pause_time << MAC_FLOW_CTRL_PT_SHIFT); |
158 | writel(flow, ioaddr + MAC_FLOW_CTRL); | 155 | writel(flow, ioaddr + MAC_FLOW_CTRL); |
159 | |||
160 | return; | ||
161 | } | 156 | } |
162 | 157 | ||
163 | /* No PMT module supported for this Ethernet Controller. | 158 | /* No PMT module supported for this Ethernet Controller. |
diff --git a/drivers/net/stmmac/dwmac100_dma.c b/drivers/net/stmmac/dwmac100_dma.c index 96d098d68ad6..2fece7b72727 100644 --- a/drivers/net/stmmac/dwmac100_dma.c +++ b/drivers/net/stmmac/dwmac100_dma.c | |||
@@ -71,8 +71,6 @@ static void dwmac100_dma_operation_mode(unsigned long ioaddr, int txmode, | |||
71 | csr6 |= DMA_CONTROL_TTC_128; | 71 | csr6 |= DMA_CONTROL_TTC_128; |
72 | 72 | ||
73 | writel(csr6, ioaddr + DMA_CONTROL); | 73 | writel(csr6, ioaddr + DMA_CONTROL); |
74 | |||
75 | return; | ||
76 | } | 74 | } |
77 | 75 | ||
78 | static void dwmac100_dump_dma_regs(unsigned long ioaddr) | 76 | static void dwmac100_dump_dma_regs(unsigned long ioaddr) |
@@ -88,7 +86,6 @@ static void dwmac100_dump_dma_regs(unsigned long ioaddr) | |||
88 | DMA_CUR_TX_BUF_ADDR, readl(ioaddr + DMA_CUR_TX_BUF_ADDR)); | 86 | DMA_CUR_TX_BUF_ADDR, readl(ioaddr + DMA_CUR_TX_BUF_ADDR)); |
89 | CHIP_DBG(KERN_DEBUG "\t CSR21 (offset 0x%x): 0x%08x\n", | 87 | CHIP_DBG(KERN_DEBUG "\t CSR21 (offset 0x%x): 0x%08x\n", |
90 | DMA_CUR_RX_BUF_ADDR, readl(ioaddr + DMA_CUR_RX_BUF_ADDR)); | 88 | DMA_CUR_RX_BUF_ADDR, readl(ioaddr + DMA_CUR_RX_BUF_ADDR)); |
91 | return; | ||
92 | } | 89 | } |
93 | 90 | ||
94 | /* DMA controller has two counters to track the number of | 91 | /* DMA controller has two counters to track the number of |
@@ -119,7 +116,6 @@ static void dwmac100_dma_diagnostic_fr(void *data, struct stmmac_extra_stats *x, | |||
119 | x->rx_missed_cntr += miss_f; | 116 | x->rx_missed_cntr += miss_f; |
120 | } | 117 | } |
121 | } | 118 | } |
122 | return; | ||
123 | } | 119 | } |
124 | 120 | ||
125 | struct stmmac_dma_ops dwmac100_dma_ops = { | 121 | struct stmmac_dma_ops dwmac100_dma_ops = { |
diff --git a/drivers/net/stmmac/dwmac_lib.c b/drivers/net/stmmac/dwmac_lib.c index 0a504adb7eb3..a85415216ef4 100644 --- a/drivers/net/stmmac/dwmac_lib.c +++ b/drivers/net/stmmac/dwmac_lib.c | |||
@@ -52,7 +52,6 @@ void dwmac_dma_start_tx(unsigned long ioaddr) | |||
52 | u32 value = readl(ioaddr + DMA_CONTROL); | 52 | u32 value = readl(ioaddr + DMA_CONTROL); |
53 | value |= DMA_CONTROL_ST; | 53 | value |= DMA_CONTROL_ST; |
54 | writel(value, ioaddr + DMA_CONTROL); | 54 | writel(value, ioaddr + DMA_CONTROL); |
55 | return; | ||
56 | } | 55 | } |
57 | 56 | ||
58 | void dwmac_dma_stop_tx(unsigned long ioaddr) | 57 | void dwmac_dma_stop_tx(unsigned long ioaddr) |
@@ -60,7 +59,6 @@ void dwmac_dma_stop_tx(unsigned long ioaddr) | |||
60 | u32 value = readl(ioaddr + DMA_CONTROL); | 59 | u32 value = readl(ioaddr + DMA_CONTROL); |
61 | value &= ~DMA_CONTROL_ST; | 60 | value &= ~DMA_CONTROL_ST; |
62 | writel(value, ioaddr + DMA_CONTROL); | 61 | writel(value, ioaddr + DMA_CONTROL); |
63 | return; | ||
64 | } | 62 | } |
65 | 63 | ||
66 | void dwmac_dma_start_rx(unsigned long ioaddr) | 64 | void dwmac_dma_start_rx(unsigned long ioaddr) |
@@ -68,8 +66,6 @@ void dwmac_dma_start_rx(unsigned long ioaddr) | |||
68 | u32 value = readl(ioaddr + DMA_CONTROL); | 66 | u32 value = readl(ioaddr + DMA_CONTROL); |
69 | value |= DMA_CONTROL_SR; | 67 | value |= DMA_CONTROL_SR; |
70 | writel(value, ioaddr + DMA_CONTROL); | 68 | writel(value, ioaddr + DMA_CONTROL); |
71 | |||
72 | return; | ||
73 | } | 69 | } |
74 | 70 | ||
75 | void dwmac_dma_stop_rx(unsigned long ioaddr) | 71 | void dwmac_dma_stop_rx(unsigned long ioaddr) |
@@ -77,8 +73,6 @@ void dwmac_dma_stop_rx(unsigned long ioaddr) | |||
77 | u32 value = readl(ioaddr + DMA_CONTROL); | 73 | u32 value = readl(ioaddr + DMA_CONTROL); |
78 | value &= ~DMA_CONTROL_SR; | 74 | value &= ~DMA_CONTROL_SR; |
79 | writel(value, ioaddr + DMA_CONTROL); | 75 | writel(value, ioaddr + DMA_CONTROL); |
80 | |||
81 | return; | ||
82 | } | 76 | } |
83 | 77 | ||
84 | #ifdef DWMAC_DMA_DEBUG | 78 | #ifdef DWMAC_DMA_DEBUG |
@@ -111,7 +105,6 @@ static void show_tx_process_state(unsigned int status) | |||
111 | default: | 105 | default: |
112 | break; | 106 | break; |
113 | } | 107 | } |
114 | return; | ||
115 | } | 108 | } |
116 | 109 | ||
117 | static void show_rx_process_state(unsigned int status) | 110 | static void show_rx_process_state(unsigned int status) |
@@ -149,7 +142,6 @@ static void show_rx_process_state(unsigned int status) | |||
149 | default: | 142 | default: |
150 | break; | 143 | break; |
151 | } | 144 | } |
152 | return; | ||
153 | } | 145 | } |
154 | #endif | 146 | #endif |
155 | 147 | ||
@@ -244,8 +236,6 @@ void stmmac_set_mac_addr(unsigned long ioaddr, u8 addr[6], | |||
244 | writel(data, ioaddr + high); | 236 | writel(data, ioaddr + high); |
245 | data = (addr[3] << 24) | (addr[2] << 16) | (addr[1] << 8) | addr[0]; | 237 | data = (addr[3] << 24) | (addr[2] << 16) | (addr[1] << 8) | addr[0]; |
246 | writel(data, ioaddr + low); | 238 | writel(data, ioaddr + low); |
247 | |||
248 | return; | ||
249 | } | 239 | } |
250 | 240 | ||
251 | void stmmac_get_mac_addr(unsigned long ioaddr, unsigned char *addr, | 241 | void stmmac_get_mac_addr(unsigned long ioaddr, unsigned char *addr, |
@@ -264,7 +254,5 @@ void stmmac_get_mac_addr(unsigned long ioaddr, unsigned char *addr, | |||
264 | addr[3] = (lo_addr >> 24) & 0xff; | 254 | addr[3] = (lo_addr >> 24) & 0xff; |
265 | addr[4] = hi_addr & 0xff; | 255 | addr[4] = hi_addr & 0xff; |
266 | addr[5] = (hi_addr >> 8) & 0xff; | 256 | addr[5] = (hi_addr >> 8) & 0xff; |
267 | |||
268 | return; | ||
269 | } | 257 | } |
270 | 258 | ||
diff --git a/drivers/net/stmmac/enh_desc.c b/drivers/net/stmmac/enh_desc.c index eb5684a1f713..3c18ebece043 100644 --- a/drivers/net/stmmac/enh_desc.c +++ b/drivers/net/stmmac/enh_desc.c | |||
@@ -241,7 +241,6 @@ static void enh_desc_init_rx_desc(struct dma_desc *p, unsigned int ring_size, | |||
241 | p->des01.erx.disable_ic = 1; | 241 | p->des01.erx.disable_ic = 1; |
242 | p++; | 242 | p++; |
243 | } | 243 | } |
244 | return; | ||
245 | } | 244 | } |
246 | 245 | ||
247 | static void enh_desc_init_tx_desc(struct dma_desc *p, unsigned int ring_size) | 246 | static void enh_desc_init_tx_desc(struct dma_desc *p, unsigned int ring_size) |
@@ -254,8 +253,6 @@ static void enh_desc_init_tx_desc(struct dma_desc *p, unsigned int ring_size) | |||
254 | p->des01.etx.end_ring = 1; | 253 | p->des01.etx.end_ring = 1; |
255 | p++; | 254 | p++; |
256 | } | 255 | } |
257 | |||
258 | return; | ||
259 | } | 256 | } |
260 | 257 | ||
261 | static int enh_desc_get_tx_owner(struct dma_desc *p) | 258 | static int enh_desc_get_tx_owner(struct dma_desc *p) |
@@ -289,8 +286,6 @@ static void enh_desc_release_tx_desc(struct dma_desc *p) | |||
289 | 286 | ||
290 | memset(p, 0, sizeof(struct dma_desc)); | 287 | memset(p, 0, sizeof(struct dma_desc)); |
291 | p->des01.etx.end_ring = ter; | 288 | p->des01.etx.end_ring = ter; |
292 | |||
293 | return; | ||
294 | } | 289 | } |
295 | 290 | ||
296 | static void enh_desc_prepare_tx_desc(struct dma_desc *p, int is_fs, int len, | 291 | static void enh_desc_prepare_tx_desc(struct dma_desc *p, int is_fs, int len, |
diff --git a/drivers/net/stmmac/norm_desc.c b/drivers/net/stmmac/norm_desc.c index ecfcc001a04a..31ad53643792 100644 --- a/drivers/net/stmmac/norm_desc.c +++ b/drivers/net/stmmac/norm_desc.c | |||
@@ -132,7 +132,6 @@ static void ndesc_init_rx_desc(struct dma_desc *p, unsigned int ring_size, | |||
132 | p->des01.rx.disable_ic = 1; | 132 | p->des01.rx.disable_ic = 1; |
133 | p++; | 133 | p++; |
134 | } | 134 | } |
135 | return; | ||
136 | } | 135 | } |
137 | 136 | ||
138 | static void ndesc_init_tx_desc(struct dma_desc *p, unsigned int ring_size) | 137 | static void ndesc_init_tx_desc(struct dma_desc *p, unsigned int ring_size) |
@@ -144,7 +143,6 @@ static void ndesc_init_tx_desc(struct dma_desc *p, unsigned int ring_size) | |||
144 | p->des01.tx.end_ring = 1; | 143 | p->des01.tx.end_ring = 1; |
145 | p++; | 144 | p++; |
146 | } | 145 | } |
147 | return; | ||
148 | } | 146 | } |
149 | 147 | ||
150 | static int ndesc_get_tx_owner(struct dma_desc *p) | 148 | static int ndesc_get_tx_owner(struct dma_desc *p) |
@@ -194,8 +192,6 @@ static void ndesc_release_tx_desc(struct dma_desc *p) | |||
194 | 192 | ||
195 | /* set termination field */ | 193 | /* set termination field */ |
196 | p->des01.tx.end_ring = ter; | 194 | p->des01.tx.end_ring = ter; |
197 | |||
198 | return; | ||
199 | } | 195 | } |
200 | 196 | ||
201 | static void ndesc_prepare_tx_desc(struct dma_desc *p, int is_fs, int len, | 197 | static void ndesc_prepare_tx_desc(struct dma_desc *p, int is_fs, int len, |
diff --git a/drivers/net/stmmac/stmmac_ethtool.c b/drivers/net/stmmac/stmmac_ethtool.c index c021eaa3ca69..f080509923f0 100644 --- a/drivers/net/stmmac/stmmac_ethtool.c +++ b/drivers/net/stmmac/stmmac_ethtool.c | |||
@@ -102,7 +102,6 @@ void stmmac_ethtool_getdrvinfo(struct net_device *dev, | |||
102 | strcpy(info->version, DRV_MODULE_VERSION); | 102 | strcpy(info->version, DRV_MODULE_VERSION); |
103 | info->fw_version[0] = '\0'; | 103 | info->fw_version[0] = '\0'; |
104 | info->n_stats = STMMAC_STATS_LEN; | 104 | info->n_stats = STMMAC_STATS_LEN; |
105 | return; | ||
106 | } | 105 | } |
107 | 106 | ||
108 | int stmmac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd) | 107 | int stmmac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd) |
@@ -194,8 +193,6 @@ void stmmac_ethtool_gregs(struct net_device *dev, | |||
194 | reg_space[i + 55] = | 193 | reg_space[i + 55] = |
195 | readl(dev->base_addr + (DMA_BUS_MODE + (i * 4))); | 194 | readl(dev->base_addr + (DMA_BUS_MODE + (i * 4))); |
196 | } | 195 | } |
197 | |||
198 | return; | ||
199 | } | 196 | } |
200 | 197 | ||
201 | int stmmac_ethtool_set_tx_csum(struct net_device *netdev, u32 data) | 198 | int stmmac_ethtool_set_tx_csum(struct net_device *netdev, u32 data) |
@@ -233,7 +230,6 @@ stmmac_get_pauseparam(struct net_device *netdev, | |||
233 | pause->tx_pause = 1; | 230 | pause->tx_pause = 1; |
234 | 231 | ||
235 | spin_unlock(&priv->lock); | 232 | spin_unlock(&priv->lock); |
236 | return; | ||
237 | } | 233 | } |
238 | 234 | ||
239 | static int | 235 | static int |
@@ -292,8 +288,6 @@ static void stmmac_get_ethtool_stats(struct net_device *dev, | |||
292 | data[i] = (stmmac_gstrings_stats[i].sizeof_stat == | 288 | data[i] = (stmmac_gstrings_stats[i].sizeof_stat == |
293 | sizeof(u64)) ? (*(u64 *)p) : (*(u32 *)p); | 289 | sizeof(u64)) ? (*(u64 *)p) : (*(u32 *)p); |
294 | } | 290 | } |
295 | |||
296 | return; | ||
297 | } | 291 | } |
298 | 292 | ||
299 | static int stmmac_get_sset_count(struct net_device *netdev, int sset) | 293 | static int stmmac_get_sset_count(struct net_device *netdev, int sset) |
@@ -323,7 +317,6 @@ static void stmmac_get_strings(struct net_device *dev, u32 stringset, u8 *data) | |||
323 | WARN_ON(1); | 317 | WARN_ON(1); |
324 | break; | 318 | break; |
325 | } | 319 | } |
326 | return; | ||
327 | } | 320 | } |
328 | 321 | ||
329 | /* Currently only support WOL through Magic packet. */ | 322 | /* Currently only support WOL through Magic packet. */ |
diff --git a/drivers/net/stmmac/stmmac_main.c b/drivers/net/stmmac/stmmac_main.c index 7ac6ddea989e..a31d580f306d 100644 --- a/drivers/net/stmmac/stmmac_main.c +++ b/drivers/net/stmmac/stmmac_main.c | |||
@@ -169,8 +169,6 @@ static void stmmac_verify_args(void) | |||
169 | flow_ctrl = FLOW_OFF; | 169 | flow_ctrl = FLOW_OFF; |
170 | if (unlikely((pause < 0) || (pause > 0xffff))) | 170 | if (unlikely((pause < 0) || (pause > 0xffff))) |
171 | pause = PAUSE_TIME; | 171 | pause = PAUSE_TIME; |
172 | |||
173 | return; | ||
174 | } | 172 | } |
175 | 173 | ||
176 | #if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG) | 174 | #if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG) |
@@ -184,7 +182,6 @@ static void print_pkt(unsigned char *buf, int len) | |||
184 | pr_info(" %02x", buf[j]); | 182 | pr_info(" %02x", buf[j]); |
185 | } | 183 | } |
186 | pr_info("\n"); | 184 | pr_info("\n"); |
187 | return; | ||
188 | } | 185 | } |
189 | #endif | 186 | #endif |
190 | 187 | ||
@@ -514,7 +511,6 @@ static void init_dma_desc_rings(struct net_device *dev) | |||
514 | pr_info("TX descriptor ring:\n"); | 511 | pr_info("TX descriptor ring:\n"); |
515 | display_ring(priv->dma_tx, txsize); | 512 | display_ring(priv->dma_tx, txsize); |
516 | } | 513 | } |
517 | return; | ||
518 | } | 514 | } |
519 | 515 | ||
520 | static void dma_free_rx_skbufs(struct stmmac_priv *priv) | 516 | static void dma_free_rx_skbufs(struct stmmac_priv *priv) |
@@ -529,7 +525,6 @@ static void dma_free_rx_skbufs(struct stmmac_priv *priv) | |||
529 | } | 525 | } |
530 | priv->rx_skbuff[i] = NULL; | 526 | priv->rx_skbuff[i] = NULL; |
531 | } | 527 | } |
532 | return; | ||
533 | } | 528 | } |
534 | 529 | ||
535 | static void dma_free_tx_skbufs(struct stmmac_priv *priv) | 530 | static void dma_free_tx_skbufs(struct stmmac_priv *priv) |
@@ -547,7 +542,6 @@ static void dma_free_tx_skbufs(struct stmmac_priv *priv) | |||
547 | priv->tx_skbuff[i] = NULL; | 542 | priv->tx_skbuff[i] = NULL; |
548 | } | 543 | } |
549 | } | 544 | } |
550 | return; | ||
551 | } | 545 | } |
552 | 546 | ||
553 | static void free_dma_desc_resources(struct stmmac_priv *priv) | 547 | static void free_dma_desc_resources(struct stmmac_priv *priv) |
@@ -567,8 +561,6 @@ static void free_dma_desc_resources(struct stmmac_priv *priv) | |||
567 | kfree(priv->rx_skbuff_dma); | 561 | kfree(priv->rx_skbuff_dma); |
568 | kfree(priv->rx_skbuff); | 562 | kfree(priv->rx_skbuff); |
569 | kfree(priv->tx_skbuff); | 563 | kfree(priv->tx_skbuff); |
570 | |||
571 | return; | ||
572 | } | 564 | } |
573 | 565 | ||
574 | /** | 566 | /** |
@@ -598,8 +590,6 @@ static void stmmac_dma_operation_mode(struct stmmac_priv *priv) | |||
598 | } | 590 | } |
599 | } | 591 | } |
600 | tx_coe = priv->tx_coe; | 592 | tx_coe = priv->tx_coe; |
601 | |||
602 | return; | ||
603 | } | 593 | } |
604 | 594 | ||
605 | /** | 595 | /** |
@@ -675,7 +665,6 @@ static void stmmac_tx(struct stmmac_priv *priv) | |||
675 | } | 665 | } |
676 | netif_tx_unlock(priv->dev); | 666 | netif_tx_unlock(priv->dev); |
677 | } | 667 | } |
678 | return; | ||
679 | } | 668 | } |
680 | 669 | ||
681 | static inline void stmmac_enable_irq(struct stmmac_priv *priv) | 670 | static inline void stmmac_enable_irq(struct stmmac_priv *priv) |
@@ -731,8 +720,6 @@ void stmmac_schedule(struct net_device *dev) | |||
731 | priv->xstats.sched_timer_n++; | 720 | priv->xstats.sched_timer_n++; |
732 | 721 | ||
733 | _stmmac_schedule(priv); | 722 | _stmmac_schedule(priv); |
734 | |||
735 | return; | ||
736 | } | 723 | } |
737 | 724 | ||
738 | static void stmmac_no_timer_started(unsigned int x) | 725 | static void stmmac_no_timer_started(unsigned int x) |
@@ -763,8 +750,6 @@ static void stmmac_tx_err(struct stmmac_priv *priv) | |||
763 | 750 | ||
764 | priv->dev->stats.tx_errors++; | 751 | priv->dev->stats.tx_errors++; |
765 | netif_wake_queue(priv->dev); | 752 | netif_wake_queue(priv->dev); |
766 | |||
767 | return; | ||
768 | } | 753 | } |
769 | 754 | ||
770 | 755 | ||
@@ -788,8 +773,6 @@ static void stmmac_dma_interrupt(struct stmmac_priv *priv) | |||
788 | stmmac_tx_err(priv); | 773 | stmmac_tx_err(priv); |
789 | } else if (unlikely(status == tx_hard_error)) | 774 | } else if (unlikely(status == tx_hard_error)) |
790 | stmmac_tx_err(priv); | 775 | stmmac_tx_err(priv); |
791 | |||
792 | return; | ||
793 | } | 776 | } |
794 | 777 | ||
795 | /** | 778 | /** |
@@ -1197,7 +1180,6 @@ static inline void stmmac_rx_refill(struct stmmac_priv *priv) | |||
1197 | } | 1180 | } |
1198 | priv->hw->desc->set_rx_owner(p + entry); | 1181 | priv->hw->desc->set_rx_owner(p + entry); |
1199 | } | 1182 | } |
1200 | return; | ||
1201 | } | 1183 | } |
1202 | 1184 | ||
1203 | static int stmmac_rx(struct stmmac_priv *priv, int limit) | 1185 | static int stmmac_rx(struct stmmac_priv *priv, int limit) |
@@ -1331,7 +1313,6 @@ static void stmmac_tx_timeout(struct net_device *dev) | |||
1331 | 1313 | ||
1332 | /* Clear Tx resources and restart transmitting again */ | 1314 | /* Clear Tx resources and restart transmitting again */ |
1333 | stmmac_tx_err(priv); | 1315 | stmmac_tx_err(priv); |
1334 | return; | ||
1335 | } | 1316 | } |
1336 | 1317 | ||
1337 | /* Configuration changes (passed on by ifconfig) */ | 1318 | /* Configuration changes (passed on by ifconfig) */ |
@@ -1373,7 +1354,6 @@ static void stmmac_multicast_list(struct net_device *dev) | |||
1373 | spin_lock(&priv->lock); | 1354 | spin_lock(&priv->lock); |
1374 | priv->hw->mac->set_filter(dev); | 1355 | priv->hw->mac->set_filter(dev); |
1375 | spin_unlock(&priv->lock); | 1356 | spin_unlock(&priv->lock); |
1376 | return; | ||
1377 | } | 1357 | } |
1378 | 1358 | ||
1379 | /** | 1359 | /** |
@@ -1489,8 +1469,6 @@ static void stmmac_vlan_rx_register(struct net_device *dev, | |||
1489 | spin_lock(&priv->lock); | 1469 | spin_lock(&priv->lock); |
1490 | priv->vlgrp = grp; | 1470 | priv->vlgrp = grp; |
1491 | spin_unlock(&priv->lock); | 1471 | spin_unlock(&priv->lock); |
1492 | |||
1493 | return; | ||
1494 | } | 1472 | } |
1495 | #endif | 1473 | #endif |
1496 | 1474 | ||
diff --git a/drivers/net/stmmac/stmmac_timer.c b/drivers/net/stmmac/stmmac_timer.c index 679f61ffb1f8..2a0e1abde7e7 100644 --- a/drivers/net/stmmac/stmmac_timer.c +++ b/drivers/net/stmmac/stmmac_timer.c | |||
@@ -31,8 +31,6 @@ static void stmmac_timer_handler(void *data) | |||
31 | struct net_device *dev = (struct net_device *)data; | 31 | struct net_device *dev = (struct net_device *)data; |
32 | 32 | ||
33 | stmmac_schedule(dev); | 33 | stmmac_schedule(dev); |
34 | |||
35 | return; | ||
36 | } | 34 | } |
37 | 35 | ||
38 | #define STMMAC_TIMER_MSG(timer, freq) \ | 36 | #define STMMAC_TIMER_MSG(timer, freq) \ |
@@ -47,13 +45,11 @@ static void stmmac_rtc_start(unsigned int new_freq) | |||
47 | { | 45 | { |
48 | rtc_irq_set_freq(stmmac_rtc, &stmmac_task, new_freq); | 46 | rtc_irq_set_freq(stmmac_rtc, &stmmac_task, new_freq); |
49 | rtc_irq_set_state(stmmac_rtc, &stmmac_task, 1); | 47 | rtc_irq_set_state(stmmac_rtc, &stmmac_task, 1); |
50 | return; | ||
51 | } | 48 | } |
52 | 49 | ||
53 | static void stmmac_rtc_stop(void) | 50 | static void stmmac_rtc_stop(void) |
54 | { | 51 | { |
55 | rtc_irq_set_state(stmmac_rtc, &stmmac_task, 0); | 52 | rtc_irq_set_state(stmmac_rtc, &stmmac_task, 0); |
56 | return; | ||
57 | } | 53 | } |
58 | 54 | ||
59 | int stmmac_open_ext_timer(struct net_device *dev, struct stmmac_timer *tm) | 55 | int stmmac_open_ext_timer(struct net_device *dev, struct stmmac_timer *tm) |
@@ -102,13 +98,11 @@ static void stmmac_tmu_start(unsigned int new_freq) | |||
102 | { | 98 | { |
103 | clk_set_rate(timer_clock, new_freq); | 99 | clk_set_rate(timer_clock, new_freq); |
104 | clk_enable(timer_clock); | 100 | clk_enable(timer_clock); |
105 | return; | ||
106 | } | 101 | } |
107 | 102 | ||
108 | static void stmmac_tmu_stop(void) | 103 | static void stmmac_tmu_stop(void) |
109 | { | 104 | { |
110 | clk_disable(timer_clock); | 105 | clk_disable(timer_clock); |
111 | return; | ||
112 | } | 106 | } |
113 | 107 | ||
114 | int stmmac_open_ext_timer(struct net_device *dev, struct stmmac_timer *tm) | 108 | int stmmac_open_ext_timer(struct net_device *dev, struct stmmac_timer *tm) |