[PATCH] headers: include linux/types.h for usb_ch9.h

This patch for usb_ch9.h includes linux/types.h instead of asm/types.h so that
__le16 and so on is explicitly defined. It also cleans up non standard //
comment.

Signed-off-by: GOTO Masanori <gotom@debian.or.jp>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by GOTO Masanori and committed by Linus Torvalds 4cceb4d1 3607d1df

+3 -3
+3 -3
include/linux/usb_ch9.h
··· 19 19 #ifndef __LINUX_USB_CH9_H 20 20 #define __LINUX_USB_CH9_H 21 21 22 - #include <asm/types.h> /* __u8 etc */ 22 + #include <linux/types.h> /* __u8 etc */ 23 23 24 24 /*-------------------------------------------------------------------------*/ 25 25 ··· 294 294 __le16 wMaxPacketSize; 295 295 __u8 bInterval; 296 296 297 - // NOTE: these two are _only_ in audio endpoints. 298 - // use USB_DT_ENDPOINT*_SIZE in bLength, not sizeof. 297 + /* NOTE: these two are _only_ in audio endpoints. */ 298 + /* use USB_DT_ENDPOINT*_SIZE in bLength, not sizeof. */ 299 299 __u8 bRefresh; 300 300 __u8 bSynchAddress; 301 301 } __attribute__ ((packed));