diff options
author | Chunfeng Yun | 2021-05-07 10:11:25 +0800 |
---|---|---|
committer | Greg Kroah-Hartman | 2021-05-10 16:21:49 +0200 |
commit | e56e60f7a9d675334d1a796ba6ae31ca94ad4312 (patch) | |
tree | e27983cae78207baccade3eab22b5e3c1e357750 /drivers/usb/host | |
parent | 40ddb76ba0baaa7d62ab563be56c5fa38ec649c7 (diff) |
usb: xhci-mtk: remove unnecessary setting of has_ippc
Due to @has_ippc's default value is 0, no need set it again if fail
to get ippc base address
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Link: https://lore.kernel.org/r/20210507021127.54717-2-chunfeng.yun@mediatek.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/xhci-mtk.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/host/xhci-mtk.c b/drivers/usb/host/xhci-mtk.c index b2058b3bc834..2548976bcf05 100644 --- a/drivers/usb/host/xhci-mtk.c +++ b/drivers/usb/host/xhci-mtk.c @@ -495,8 +495,6 @@ static int xhci_mtk_probe(struct platform_device *pdev) goto put_usb2_hcd; } mtk->has_ippc = true; - } else { - mtk->has_ippc = false; } device_init_wakeup(dev, true); |