[go: nahoru, domu]

History log of /drivers/net/fddi/skfp/pmf.c
Revision Date Author Comments
e1b2aa7f3051e268973b6126fdca602ac4af6bc4 01-Sep-2012 Dan Carpenter <dan.carpenter@oracle.com> fddi: 64 bit bug in smt_add_para()

The intent was to set 4 bytes of data so that's why the sp_len is set
to 4 on the next line. The cast to u_long pointer clears 8 bytes
on 64 bit arches.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@tempietto.lan>
c2fd03a0115a244c5f622453b2b1f038ed5700a6 04-Jun-2012 Joe Perches <joe@perches.com> drivers: net: Remove casts to same type

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

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
33f810b2036f13f1b123062a9e5c1794d400ce81 31-Jul-2011 Jeff Kirsher <jeffrey.t.kirsher@intel.com> fddi: Move the FDDI drivers

Move the FDDI drivers into drivers/net/fddi/ and make the
necessary Kconfig and Makefile changes.

CC: "Maciej W. Rozycki" <macro@linux-mips.org>
CC: Christoph Goos <cgoos@syskonnect.de>
CC: <linux@syskonnect.de>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>