mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
isa: Remove unnecessary checks
The isa_dev->dev.platform_data is initialized with incoming parameter isa_driver. After it isa_dev->dev.platform_data is checked for NULL, but incoming parameter isa_driver is not NULL since it is dereferenced many times before this check. Found by Linux Verification Center (linuxtesting.org) with SVACE. Signed-off-by: Vladislav Efanov <VEfanov@ispras.ru> Acked-by: William Breathitt Gray <william.gray@linaro.org> Link: https://lore.kernel.org/r/20230517125025.434005-1-VEfanov@ispras.ru Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
54aa5b6044
commit
6bea9ea6bb
@ -149,11 +149,8 @@ int isa_register_driver(struct isa_driver *isa_driver, unsigned int ndev)
|
||||
break;
|
||||
}
|
||||
|
||||
if (isa_dev->dev.platform_data) {
|
||||
isa_dev->next = isa_driver->devices;
|
||||
isa_driver->devices = &isa_dev->dev;
|
||||
} else
|
||||
device_unregister(&isa_dev->dev);
|
||||
isa_dev->next = isa_driver->devices;
|
||||
isa_driver->devices = &isa_dev->dev;
|
||||
}
|
||||
|
||||
if (!error && !isa_driver->devices)
|
||||
|
Loading…
Reference in New Issue
Block a user