The patch titled usb: protect hcd.h from multiple inclusions has been added to the -mm tree. Its filename is usb-protect-hcdh-from-multiple-inclusions.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: usb: protect hcd.h from multiple inclusions From: Anton Vorontsov <avorontsov@xxxxxxxxxxxxx> This will let us use this header in other header files. Will be needed for the FHCI USB Host driver. Signed-off-by: Anton Vorontsov <avorontsov@xxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/usb/core/hcd.h | 4 ++++ 1 file changed, 4 insertions(+) diff -puN drivers/usb/core/hcd.h~usb-protect-hcdh-from-multiple-inclusions drivers/usb/core/hcd.h --- a/drivers/usb/core/hcd.h~usb-protect-hcdh-from-multiple-inclusions +++ a/drivers/usb/core/hcd.h @@ -16,6 +16,8 @@ * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef __USB_CORE_HCD_H +#define __USB_CORE_HCD_H #ifdef __KERNEL__ @@ -483,3 +485,5 @@ static inline void usbmon_urb_complete(s extern struct rw_semaphore ehci_cf_port_reset_rwsem; #endif /* __KERNEL__ */ + +#endif /* __USB_CORE_HCD_H */ _ Patches currently in -mm which might be from avorontsov@xxxxxxxxxxxxx are linux-next.patch usb-protect-hcdh-from-multiple-inclusions.patch usb-driver-for-freescale-quicc-engine-usb-host-controller.patch rtc-bunch-of-drivers-fix-no-irq-case-handing.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html