mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
backlight: PTR_ERR return of wrong pointer in cr_backlight_probe()
Return the PTR_ERR of the correct pointer. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
parent
9905a43b2d
commit
5b0582ea42
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ static int cr_backlight_probe(struct platform_device *pdev)
|
|||
if (IS_ERR(ldp)) {
|
||||
backlight_device_unregister(bdp);
|
||||
pci_dev_put(lpc_dev);
|
||||
return PTR_ERR(bdp);
|
||||
return PTR_ERR(ldp);
|
||||
}
|
||||
|
||||
pci_read_config_dword(lpc_dev, CRVML_REG_GPIOBAR,
|
||||
|
|
Loading…
Reference in a new issue