staging: rts5208: fix error return code in rtsx_probe()
Fix to return -ENOMEM instead of 0 when the memory alloc fail in probe error handling path. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6bf2e2a597
commit
7d4c0318f1
1 changed files with 3 additions and 1 deletions
|
@ -896,8 +896,10 @@ static int rtsx_probe(struct pci_dev *pci,
|
||||||
memset(dev, 0, sizeof(struct rtsx_dev));
|
memset(dev, 0, sizeof(struct rtsx_dev));
|
||||||
|
|
||||||
dev->chip = kzalloc(sizeof(struct rtsx_chip), GFP_KERNEL);
|
dev->chip = kzalloc(sizeof(struct rtsx_chip), GFP_KERNEL);
|
||||||
if (dev->chip == NULL)
|
if (dev->chip == NULL) {
|
||||||
|
err = -ENOMEM;
|
||||||
goto errout;
|
goto errout;
|
||||||
|
}
|
||||||
|
|
||||||
spin_lock_init(&dev->reg_lock);
|
spin_lock_init(&dev->reg_lock);
|
||||||
mutex_init(&(dev->dev_mutex));
|
mutex_init(&(dev->dev_mutex));
|
||||||
|
|
Loading…
Add table
Reference in a new issue