mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
staging: pi433: fix error return code in pi433_probe()
Fix to return negative error code -ENOMEM from cdev alloc failed error handling case instead of 0, as done elsewhere in this function. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Link: https://lore.kernel.org/r/20200428150650.102340-1-weiyongjun1@huawei.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
16529e3b86
commit
70458c2004
@ -1230,6 +1230,7 @@ static int pi433_probe(struct spi_device *spi)
|
||||
device->cdev = cdev_alloc();
|
||||
if (!device->cdev) {
|
||||
dev_dbg(device->dev, "allocation of cdev failed");
|
||||
retval = -ENOMEM;
|
||||
goto cdev_failed;
|
||||
}
|
||||
device->cdev->owner = THIS_MODULE;
|
||||
|
Loading…
Reference in New Issue
Block a user