mirror of https://gitee.com/openkylin/linux.git
usb: bdc: use devm_platform_ioremap_resource() to simplify code
Use devm_platform_ioremap_resource() to simplify the code a bit. This is detected by coccinelle. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
parent
4496bf2505
commit
586a5fd60c
|
@ -480,7 +480,6 @@ static void bdc_phy_exit(struct bdc *bdc)
|
||||||
static int bdc_probe(struct platform_device *pdev)
|
static int bdc_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct bdc *bdc;
|
struct bdc *bdc;
|
||||||
struct resource *res;
|
|
||||||
int ret = -ENOMEM;
|
int ret = -ENOMEM;
|
||||||
int irq;
|
int irq;
|
||||||
u32 temp;
|
u32 temp;
|
||||||
|
@ -508,8 +507,7 @@ static int bdc_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
bdc->clk = clk;
|
bdc->clk = clk;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
bdc->regs = devm_platform_ioremap_resource(pdev, 0);
|
||||||
bdc->regs = devm_ioremap_resource(dev, res);
|
|
||||||
if (IS_ERR(bdc->regs)) {
|
if (IS_ERR(bdc->regs)) {
|
||||||
dev_err(dev, "ioremap error\n");
|
dev_err(dev, "ioremap error\n");
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
Loading…
Reference in New Issue