mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
musb: musb_dsps: remove duplicate check on resource
Sanity check on resource happening with devm_ioremap_resource(). Signed-off-by: Varka Bhadram <varkab@cdac.in> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
972b98344b
commit
f3f5972f9e
@ -447,9 +447,6 @@ static int dsps_musb_init(struct musb *musb)
|
||||
int ret;
|
||||
|
||||
r = platform_get_resource_byname(parent, IORESOURCE_MEM, "control");
|
||||
if (!r)
|
||||
return -EINVAL;
|
||||
|
||||
reg_base = devm_ioremap_resource(dev, r);
|
||||
if (IS_ERR(reg_base))
|
||||
return PTR_ERR(reg_base);
|
||||
|
Loading…
Reference in New Issue
Block a user