mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
6469933605
Adding casts of objects to the same type is unnecessary and confusing for a human reader. For example, this cast: int y; int *p = (int *)&y; I used the coccinelle script below to find and remove these unnecessary casts. I manually removed the conversions this script produces of casts with __force, __iomem and __user. @@ type T; T *p; @@ - (T *)p + p A function in atl1e_main.c was passed a const pointer when it actually modified elements of the structure. Change the argument to a non-const pointer. A function in stmmac needed a __force to avoid a sparse warning. Added it. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net> |
||
---|---|---|
.. | ||
3c503.c | ||
3c503.h | ||
8390.c | ||
8390.h | ||
8390p.c | ||
ac3200.c | ||
apne.c | ||
ax88796.c | ||
axnet_cs.c | ||
e2100.c | ||
es3210.c | ||
etherh.c | ||
hp-plus.c | ||
hp.c | ||
hydra.c | ||
Kconfig | ||
lib8390.c | ||
lne390.c | ||
mac8390.c | ||
Makefile | ||
ne-h8300.c | ||
ne.c | ||
ne2k-pci.c | ||
ne3210.c | ||
pcnet_cs.c | ||
smc-ultra.c | ||
smc-ultra32.c | ||
stnic.c | ||
wd.c | ||
zorro8390.c |