|
@@ -3226,8 +3226,8 @@ static struct d40_base * __init d40_hw_detect_init(struct platform_device *pdev)
|
|
|
num_log_chans = num_phy_chans * D40_MAX_LOG_CHAN_PER_PHY;
|
|
|
|
|
|
dev_info(&pdev->dev,
|
|
|
- "hardware rev: %d @ 0x%x with %d physical and %d logical channels\n",
|
|
|
- rev, res->start, num_phy_chans, num_log_chans);
|
|
|
+ "hardware rev: %d @ %pa with %d physical and %d logical channels\n",
|
|
|
+ rev, &res->start, num_phy_chans, num_log_chans);
|
|
|
|
|
|
base = kzalloc(ALIGN(sizeof(struct d40_base), 4) +
|
|
|
(num_phy_chans + num_log_chans + num_memcpy_chans) *
|
|
@@ -3579,9 +3579,7 @@ static int __init d40_probe(struct platform_device *pdev)
|
|
|
if (request_mem_region(res->start, resource_size(res),
|
|
|
D40_NAME " I/O lcpa") == NULL) {
|
|
|
ret = -EBUSY;
|
|
|
- d40_err(&pdev->dev,
|
|
|
- "Failed to request LCPA region 0x%x-0x%x\n",
|
|
|
- res->start, res->end);
|
|
|
+ d40_err(&pdev->dev, "Failed to request LCPA region %pR\n", res);
|
|
|
goto failure;
|
|
|
}
|
|
|
|
|
@@ -3589,8 +3587,8 @@ static int __init d40_probe(struct platform_device *pdev)
|
|
|
val = readl(base->virtbase + D40_DREG_LCPA);
|
|
|
if (res->start != val && val != 0) {
|
|
|
dev_warn(&pdev->dev,
|
|
|
- "[%s] Mismatch LCPA dma 0x%x, def 0x%x\n",
|
|
|
- __func__, val, res->start);
|
|
|
+ "[%s] Mismatch LCPA dma 0x%x, def %pa\n",
|
|
|
+ __func__, val, &res->start);
|
|
|
} else
|
|
|
writel(res->start, base->virtbase + D40_DREG_LCPA);
|
|
|
|