Commit 7b89f42f authored by Russell King's avatar Russell King

[ARM] Kill snprintf formatting warning.

parent f3b30252
...@@ -186,7 +186,7 @@ static int impd1_probe(struct device *dev) ...@@ -186,7 +186,7 @@ static int impd1_probe(struct device *dev)
memset(d, 0, sizeof(struct amba_device)); memset(d, 0, sizeof(struct amba_device));
snprintf(d->dev.bus_id, sizeof(d->dev.bus_id), snprintf(d->dev.bus_id, sizeof(d->dev.bus_id),
"lm%x:%5.5x", pdev->id, idev->offset >> 12); "lm%x:%5.5lx", pdev->id, idev->offset >> 12);
d->dev.parent = &pdev->dev; d->dev.parent = &pdev->dev;
d->res.start = res->start + idev->offset; d->res.start = res->start + idev->offset;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment