diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-06-25 02:00:49 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-06-25 02:00:49 +0200 |
commit | 3641fdeb17a84a170b2259a5a38d9bfd106c5a6e (patch) | |
tree | f059933d93e8f68f44487ff8049fff54995718ae /drivers | |
parent | Linux 4.7-rc4 (diff) | |
parent | usb: common: otg-fsm: add license to usb-otg-fsm (diff) | |
download | linux-3641fdeb17a84a170b2259a5a38d9bfd106c5a6e.tar.xz linux-3641fdeb17a84a170b2259a5a38d9bfd106c5a6e.zip |
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
Diffstat (limited to 'drivers')
-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"); |