usb: phy: fix dual role sysfs build if kernel modules are supported
authorAmit Pundir <amit.pundir@linaro.org>
Wed, 2 Sep 2015 11:08:31 +0000 (16:38 +0530)
committerJohn Stultz <john.stultz@linaro.org>
Tue, 16 Feb 2016 21:52:13 +0000 (13:52 -0800)
commitb9efd37bc8c01458a81d5b142e4b2259465a3c51
treee718eb0ea4771132e60ef8c4a3c3a9da21f5c500
parentce31762e99a3a75edb10d053dd71ec02bbe7aaa5
usb: phy: fix dual role sysfs build if kernel modules are supported

Add a missing ";" after EXPORT_SYMBOL() otherwise we run
into following build error if Kernel Modules are supported:
----------
  CC      drivers/usb/phy/class-dual-role.o
drivers/usb/phy/class-dual-role.c:91:1: error: expected ',' or ';' before 'int'
 int dual_role_get_property(struct dual_role_phy_instance *dual_role,
 ^
make[3]: *** [drivers/usb/phy/class-dual-role.o] Error 1
----------

Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
drivers/usb/phy/class-dual-role.c