diff options
Diffstat (limited to 'drivers/net/fddi/skfp/pmf.c')
-rw-r--r-- | drivers/net/fddi/skfp/pmf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/fddi/skfp/pmf.c b/drivers/net/fddi/skfp/pmf.c index 9ac4665d7411..24d8566cfd8b 100644 --- a/drivers/net/fddi/skfp/pmf.c +++ b/drivers/net/fddi/skfp/pmf.c | |||
@@ -1242,7 +1242,7 @@ static int smt_set_para(struct s_smc *smc, struct smt_para *pa, int index, | |||
1242 | if (len < 8) | 1242 | if (len < 8) |
1243 | goto len_error ; | 1243 | goto len_error ; |
1244 | if (set) | 1244 | if (set) |
1245 | memcpy((char *) to,(char *) from+2,6) ; | 1245 | memcpy(to,from+2,6) ; |
1246 | to += 8 ; | 1246 | to += 8 ; |
1247 | from += 8 ; | 1247 | from += 8 ; |
1248 | len -= 8 ; | 1248 | len -= 8 ; |
@@ -1251,7 +1251,7 @@ static int smt_set_para(struct s_smc *smc, struct smt_para *pa, int index, | |||
1251 | if (len < 4) | 1251 | if (len < 4) |
1252 | goto len_error ; | 1252 | goto len_error ; |
1253 | if (set) | 1253 | if (set) |
1254 | memcpy((char *) to,(char *) from,4) ; | 1254 | memcpy(to,from,4) ; |
1255 | to += 4 ; | 1255 | to += 4 ; |
1256 | from += 4 ; | 1256 | from += 4 ; |
1257 | len -= 4 ; | 1257 | len -= 4 ; |
@@ -1260,7 +1260,7 @@ static int smt_set_para(struct s_smc *smc, struct smt_para *pa, int index, | |||
1260 | if (len < 8) | 1260 | if (len < 8) |
1261 | goto len_error ; | 1261 | goto len_error ; |
1262 | if (set) | 1262 | if (set) |
1263 | memcpy((char *) to,(char *) from,8) ; | 1263 | memcpy(to,from,8) ; |
1264 | to += 8 ; | 1264 | to += 8 ; |
1265 | from += 8 ; | 1265 | from += 8 ; |
1266 | len -= 8 ; | 1266 | len -= 8 ; |
@@ -1269,7 +1269,7 @@ static int smt_set_para(struct s_smc *smc, struct smt_para *pa, int index, | |||
1269 | if (len < 32) | 1269 | if (len < 32) |
1270 | goto len_error ; | 1270 | goto len_error ; |
1271 | if (set) | 1271 | if (set) |
1272 | memcpy((char *) to,(char *) from,32) ; | 1272 | memcpy(to,from,32) ; |
1273 | to += 32 ; | 1273 | to += 32 ; |
1274 | from += 32 ; | 1274 | from += 32 ; |
1275 | len -= 32 ; | 1275 | len -= 32 ; |