diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-06-24 17:00:49 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-06-24 17:00:49 -0700 |
commit | 3641fdeb17a84a170b2259a5a38d9bfd106c5a6e (patch) | |
tree | f059933d93e8f68f44487ff8049fff54995718ae | |
parent | 33688abb2802ff3a230bd2441f765477b94cc89e (diff) | |
parent | ea1d39a31d3b1b6060b6e83e5a29c069a124c68a (diff) | |
download | linux-3641fdeb17a84a170b2259a5a38d9bfd106c5a6e.tar.bz2 |
Merge tag 'usb-ci-v4.7-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-linus
Peter writes:
One fix for module support in OTG FSM
-rw-r--r-- | drivers/usb/common/usb-otg-fsm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/common/usb-otg-fsm.c b/drivers/usb/common/usb-otg-fsm.c index 9059b7dc185e..2f537bbdda09 100644 --- a/drivers/usb/common/usb-otg-fsm.c +++ b/drivers/usb/common/usb-otg-fsm.c @@ -21,6 +21,7 @@ * 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include <linux/module.h> #include <linux/kernel.h> #include <linux/types.h> #include <linux/mutex.h> @@ -450,3 +451,4 @@ int otg_statemachine(struct otg_fsm *fsm) return fsm->state_changed; } EXPORT_SYMBOL_GPL(otg_statemachine); +MODULE_LICENSE("GPL"); |