fbdev: atafb: Modernize printing of kernel messages
Now the driver has been converted to a platform driver, the legacy printk() calls without any log level can be replaced by proper dev_*() calls. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Michael Schmitz <schmitzmic@gmail.com> Cc: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
committed by
Bartlomiej Zolnierkiewicz
parent
80cf96357d
commit
cbb91d5d48
+13
-12
@@ -3083,12 +3083,12 @@ static int __init atafb_probe(struct platform_device *pdev)
|
|||||||
if (fb_get_options("atafb", &option))
|
if (fb_get_options("atafb", &option))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
atafb_setup(option);
|
atafb_setup(option);
|
||||||
printk("atafb_init: start\n");
|
dev_dbg(&pdev->dev, "%s: start\n", __func__);
|
||||||
|
|
||||||
do {
|
do {
|
||||||
#ifdef ATAFB_EXT
|
#ifdef ATAFB_EXT
|
||||||
if (external_addr) {
|
if (external_addr) {
|
||||||
printk("atafb_init: initializing external hw\n");
|
dev_dbg(&pdev->dev, "initializing external hw\n");
|
||||||
fbhw = &ext_switch;
|
fbhw = &ext_switch;
|
||||||
atafb_ops.fb_setcolreg = &ext_setcolreg;
|
atafb_ops.fb_setcolreg = &ext_setcolreg;
|
||||||
defmode = DEFMODE_EXT;
|
defmode = DEFMODE_EXT;
|
||||||
@@ -3097,7 +3097,7 @@ static int __init atafb_probe(struct platform_device *pdev)
|
|||||||
#endif
|
#endif
|
||||||
#ifdef ATAFB_TT
|
#ifdef ATAFB_TT
|
||||||
if (ATARIHW_PRESENT(TT_SHIFTER)) {
|
if (ATARIHW_PRESENT(TT_SHIFTER)) {
|
||||||
printk("atafb_init: initializing TT hw\n");
|
dev_dbg(&pdev->dev, "initializing TT hw\n");
|
||||||
fbhw = &tt_switch;
|
fbhw = &tt_switch;
|
||||||
atafb_ops.fb_setcolreg = &tt_setcolreg;
|
atafb_ops.fb_setcolreg = &tt_setcolreg;
|
||||||
defmode = DEFMODE_TT;
|
defmode = DEFMODE_TT;
|
||||||
@@ -3106,7 +3106,7 @@ static int __init atafb_probe(struct platform_device *pdev)
|
|||||||
#endif
|
#endif
|
||||||
#ifdef ATAFB_FALCON
|
#ifdef ATAFB_FALCON
|
||||||
if (ATARIHW_PRESENT(VIDEL_SHIFTER)) {
|
if (ATARIHW_PRESENT(VIDEL_SHIFTER)) {
|
||||||
printk("atafb_init: initializing Falcon hw\n");
|
dev_dbg(&pdev->dev, "initializing Falcon hw\n");
|
||||||
fbhw = &falcon_switch;
|
fbhw = &falcon_switch;
|
||||||
atafb_ops.fb_setcolreg = &falcon_setcolreg;
|
atafb_ops.fb_setcolreg = &falcon_setcolreg;
|
||||||
error = request_irq(IRQ_AUTO_4, falcon_vbl_switcher, 0,
|
error = request_irq(IRQ_AUTO_4, falcon_vbl_switcher, 0,
|
||||||
@@ -3121,7 +3121,7 @@ static int __init atafb_probe(struct platform_device *pdev)
|
|||||||
#ifdef ATAFB_STE
|
#ifdef ATAFB_STE
|
||||||
if (ATARIHW_PRESENT(STND_SHIFTER) ||
|
if (ATARIHW_PRESENT(STND_SHIFTER) ||
|
||||||
ATARIHW_PRESENT(EXTD_SHIFTER)) {
|
ATARIHW_PRESENT(EXTD_SHIFTER)) {
|
||||||
printk("atafb_init: initializing ST/E hw\n");
|
dev_dbg(&pdev->dev, "initializing ST/E hw\n");
|
||||||
fbhw = &st_switch;
|
fbhw = &st_switch;
|
||||||
atafb_ops.fb_setcolreg = &stste_setcolreg;
|
atafb_ops.fb_setcolreg = &stste_setcolreg;
|
||||||
defmode = DEFMODE_STE;
|
defmode = DEFMODE_STE;
|
||||||
@@ -3129,7 +3129,8 @@ static int __init atafb_probe(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
fbhw = &st_switch;
|
fbhw = &st_switch;
|
||||||
atafb_ops.fb_setcolreg = &stste_setcolreg;
|
atafb_ops.fb_setcolreg = &stste_setcolreg;
|
||||||
printk("Cannot determine video hardware; defaulting to ST(e)\n");
|
dev_warn(&pdev->dev,
|
||||||
|
"Cannot determine video hardware; defaulting to ST(e)\n");
|
||||||
#else /* ATAFB_STE */
|
#else /* ATAFB_STE */
|
||||||
/* no default driver included */
|
/* no default driver included */
|
||||||
/* Nobody will ever see this message :-) */
|
/* Nobody will ever see this message :-) */
|
||||||
@@ -3169,8 +3170,8 @@ static int __init atafb_probe(struct platform_device *pdev)
|
|||||||
kernel_set_cachemode(screen_base, screen_len,
|
kernel_set_cachemode(screen_base, screen_len,
|
||||||
IOMAP_WRITETHROUGH);
|
IOMAP_WRITETHROUGH);
|
||||||
}
|
}
|
||||||
printk("atafb: phys_screen_base %lx screen_len %d\n",
|
dev_info(&pdev->dev, "phys_screen_base %lx screen_len %d\n",
|
||||||
phys_screen_base, screen_len);
|
phys_screen_base, screen_len);
|
||||||
#ifdef ATAFB_EXT
|
#ifdef ATAFB_EXT
|
||||||
} else {
|
} else {
|
||||||
/* Map the video memory (physical address given) to somewhere
|
/* Map the video memory (physical address given) to somewhere
|
||||||
@@ -3217,12 +3218,12 @@ static int __init atafb_probe(struct platform_device *pdev)
|
|||||||
fb_alloc_cmap(&(fb_info.cmap), 1 << fb_info.var.bits_per_pixel, 0);
|
fb_alloc_cmap(&(fb_info.cmap), 1 << fb_info.var.bits_per_pixel, 0);
|
||||||
|
|
||||||
|
|
||||||
printk("Determined %dx%d, depth %d\n",
|
dev_info(&pdev->dev, "Determined %dx%d, depth %d\n", fb_info.var.xres,
|
||||||
fb_info.var.xres, fb_info.var.yres, fb_info.var.bits_per_pixel);
|
fb_info.var.yres, fb_info.var.bits_per_pixel);
|
||||||
if ((fb_info.var.xres != fb_info.var.xres_virtual) ||
|
if ((fb_info.var.xres != fb_info.var.xres_virtual) ||
|
||||||
(fb_info.var.yres != fb_info.var.yres_virtual))
|
(fb_info.var.yres != fb_info.var.yres_virtual))
|
||||||
printk(" virtual %dx%d\n", fb_info.var.xres_virtual,
|
dev_info(&pdev->dev, " virtual %dx%d\n",
|
||||||
fb_info.var.yres_virtual);
|
fb_info.var.xres_virtual, fb_info.var.yres_virtual);
|
||||||
|
|
||||||
if (register_framebuffer(&fb_info) < 0) {
|
if (register_framebuffer(&fb_info) < 0) {
|
||||||
#ifdef ATAFB_EXT
|
#ifdef ATAFB_EXT
|
||||||
|
|||||||
Reference in New Issue
Block a user