mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue