From: Robert Love don't leak the kernel uX types to user-space, use __uX in lieu Signed-off-by: Robert Love Signed-off-by: Andrew Morton --- include/linux/mii.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff -puN include/linux/mii.h~miih-dont-leak-kernel-types include/linux/mii.h --- devel/include/linux/mii.h~miih-dont-leak-kernel-types 2006-01-05 22:45:02.000000000 -0800 +++ devel-akpm/include/linux/mii.h 2006-01-05 22:45:02.000000000 -0800 @@ -171,10 +171,10 @@ extern int generic_mii_ioctl(struct mii_ /* This structure is used in all SIOCxMIIxxx ioctl calls */ struct mii_ioctl_data { - u16 phy_id; - u16 reg_num; - u16 val_in; - u16 val_out; + __u16 phy_id; + __u16 reg_num; + __u16 val_in; + __u16 val_out; }; _