diff options
author | Kees Cook <keescook@chromium.org> | 2017-09-21 02:27:40 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-10-04 10:57:03 +0300 |
commit | 598b98f24a8deb2d40e97c4f798a1a9fe343efab (patch) | |
tree | 0127aa409ba9f3aa4928bfc6c563833d8125b223 /drivers/usb/phy | |
parent | 06e5e0045afd5f3165ba4d11f23e448d8d2ecbd4 (diff) | |
download | linux-598b98f24a8deb2d40e97c4f798a1a9fe343efab.tar.xz |
usb/phy-isp1301-omap: Remove .data assignment
The .data assignment appears to be redundant to the WORK_STOP bit for
stopping the timer. Also, it appears this timer is entirely unused
as it is only ever started under #define VERBOSE, which is explicitly
undefined.
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/phy-isp1301-omap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/phy/phy-isp1301-omap.c b/drivers/usb/phy/phy-isp1301-omap.c index c6052c814bcc..718026bed1b6 100644 --- a/drivers/usb/phy/phy-isp1301-omap.c +++ b/drivers/usb/phy/phy-isp1301-omap.c @@ -1222,7 +1222,6 @@ static int isp1301_remove(struct i2c_client *i2c) if (machine_is_omap_h2()) gpio_free(2); - isp->timer.data = 0; set_bit(WORK_STOP, &isp->todo); del_timer_sync(&isp->timer); flush_work(&isp->work); |