mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
tty: serial: max310x: Remove explicit use of devm_kfree
There is no reason to explicitly call devm_kfree in probe or remove functions. Signed-off-by: Emil Goode <emilgoode@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
23e7c6a765
commit
fd7c81f864
@ -1198,7 +1198,6 @@ err_freq:
|
||||
|
||||
err_out:
|
||||
dev_set_drvdata(dev, NULL);
|
||||
devm_kfree(dev, s);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -1234,8 +1233,6 @@ static int __devexit max310x_remove(struct spi_device *spi)
|
||||
if (s->pdata->exit)
|
||||
s->pdata->exit();
|
||||
|
||||
devm_kfree(dev, s);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user