Commit 258de4ba authored by Grant Likely's avatar Grant Likely

[POWERPC] XilinxFB: add banner output to probe routine when DEBUG is defined

Debug support: when DEBUG is defined, output relevant details to the
log about the framebuffer registration.
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
Acked-by: default avatarAndrei Konovalov <akonovalov@ru.mvista.com>
parent dcccb37e
......@@ -287,6 +287,11 @@ xilinxfb_drv_probe(struct device *dev)
goto failed4;
}
/* Put a banner in the log (for DEBUG) */
dev_dbg(dev, "regs: phys=%x, virt=%p\n",
drvdata->regs_phys, drvdata->regs);
dev_dbg(dev, "fb: phys=%p, virt=%p, size=%x\n",
(void*)drvdata->fb_phys, drvdata->fb_virt, FB_SIZE);
return 0; /* success */
failed4:
......
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