mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
fbdev/sh7760fb: Use fb_dbg() in sh7760fb_get_color_info()
Give struct fb_info to sh7760fb_get_color_info() and use it in call to fb_dbg(). Prepares fbdev for making struct fb_info.dev optional. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20230613110953.24176-26-tzimmermann@suse.de
This commit is contained in:
parent
d850f1c33a
commit
f08c6c53b8
@ -118,7 +118,7 @@ static int sh7760_setcolreg (u_int regno,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int sh7760fb_get_color_info(struct device *dev,
|
||||
static int sh7760fb_get_color_info(struct fb_info *info,
|
||||
u16 lddfr, int *bpp, int *gray)
|
||||
{
|
||||
int lbpp, lgray;
|
||||
@ -150,7 +150,7 @@ static int sh7760fb_get_color_info(struct device *dev,
|
||||
lgray = 0;
|
||||
break;
|
||||
default:
|
||||
dev_dbg(dev, "unsupported LDDFR bit depth.\n");
|
||||
fb_dbg(info, "unsupported LDDFR bit depth.\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
@ -170,7 +170,7 @@ static int sh7760fb_check_var(struct fb_var_screeninfo *var,
|
||||
int ret, bpp;
|
||||
|
||||
/* get color info from register value */
|
||||
ret = sh7760fb_get_color_info(info->dev, par->pd->lddfr, &bpp, NULL);
|
||||
ret = sh7760fb_get_color_info(info, par->pd->lddfr, &bpp, NULL);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
@ -222,7 +222,7 @@ static int sh7760fb_set_par(struct fb_info *info)
|
||||
vdln = vm->yres;
|
||||
|
||||
/* get color info from register value */
|
||||
ret = sh7760fb_get_color_info(info->dev, par->pd->lddfr, &bpp, &gray);
|
||||
ret = sh7760fb_get_color_info(info, par->pd->lddfr, &bpp, &gray);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
@ -381,7 +381,7 @@ static int sh7760fb_alloc_mem(struct fb_info *info)
|
||||
return 0;
|
||||
|
||||
/* get color info from register value */
|
||||
ret = sh7760fb_get_color_info(info->dev, par->pd->lddfr, &bpp, NULL);
|
||||
ret = sh7760fb_get_color_info(info, par->pd->lddfr, &bpp, NULL);
|
||||
if (ret) {
|
||||
printk(KERN_ERR "colinfo\n");
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user