mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 21:06:39 +07:00
wlcore: remove newly introduced alloc/OOM messages
In commit0d2e7a5c
(wireless: Remove unnecessary alloc/OOM messages, alloc cleanups) OOM messages after alloc were removed from the wlcore modules. Commitafb43e6d
(wlcore: remove if_ops from platform_data) reintroduced a couple of those. This patch removes them. Signed-off-by: Luciano Coelho <coelho@ti.com> Reviewed-by: Felipe Balbi <balbi@ti.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
d9d76a045f
commit
f1045f5e1f
@ -229,10 +229,8 @@ static int wl1271_probe(struct sdio_func *func,
|
||||
return -ENODEV;
|
||||
|
||||
pdev_data = kzalloc(sizeof(*pdev_data), GFP_KERNEL);
|
||||
if (!pdev_data) {
|
||||
dev_err(&func->dev, "can't allocate platdev_data\n");
|
||||
if (!pdev_data)
|
||||
goto out;
|
||||
}
|
||||
|
||||
pdev_data->if_ops = &sdio_ops;
|
||||
|
||||
|
@ -332,10 +332,8 @@ static int wl1271_probe(struct spi_device *spi)
|
||||
int ret = -ENOMEM;
|
||||
|
||||
pdev_data = kzalloc(sizeof(*pdev_data), GFP_KERNEL);
|
||||
if (!pdev_data) {
|
||||
dev_err(&spi->dev, "can't allocate platdev_data\n");
|
||||
if (!pdev_data)
|
||||
goto out;
|
||||
}
|
||||
|
||||
pdev_data->pdata = spi->dev.platform_data;
|
||||
if (!pdev_data->pdata) {
|
||||
|
Loading…
Reference in New Issue
Block a user