mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
[IRDA]: fix drivers/net/irda/ali-ircc.c:ali_ircc_init()
The Coverity checker spotted, that from the changes from commit 898b1d16f8230fb912a0c2248df685735c6ceda3 the if (ret) platform_driver_unregister(&ali_ircc_driver); was dead code. This patch changes this function to what seems to have been the intention. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1252ecf63f
commit
9c6c6795ed
@ -146,7 +146,7 @@ static int __init ali_ircc_init(void)
|
||||
{
|
||||
ali_chip_t *chip;
|
||||
chipio_t info;
|
||||
int ret = -ENODEV;
|
||||
int ret;
|
||||
int cfg, cfg_base;
|
||||
int reg, revision;
|
||||
int i = 0;
|
||||
@ -160,6 +160,7 @@ static int __init ali_ircc_init(void)
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = -ENODEV;
|
||||
|
||||
/* Probe for all the ALi chipsets we know about */
|
||||
for (chip= chips; chip->name; chip++, i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user