mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-26 20:58:33 +00:00
USB: s3c-hsudc: use IS_ERR() instead of NULL check
clk_get() returns ERR_PTR() on error, not NULL. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a088592432
commit
004c127ef0
@ -1299,9 +1299,9 @@ static int s3c_hsudc_probe(struct platform_device *pdev)
|
||||
s3c_hsudc_setup_ep(hsudc);
|
||||
|
||||
hsudc->uclk = clk_get(&pdev->dev, "usb-device");
|
||||
if (hsudc->uclk == NULL) {
|
||||
if (IS_ERR(hsudc->uclk)) {
|
||||
dev_err(dev, "failed to find usb-device clock source\n");
|
||||
return -ENOENT;
|
||||
return PTR_ERR(hsudc->uclk);
|
||||
}
|
||||
clk_enable(hsudc->uclk);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user