fbdev: sh_mobile_meram: Remove unneeded sanity checks
The meram_register(), meram_unregister() and meram_update() operations check that the pointers they get from the caller are not NULL. Those checks can be remove, as the caller already ensures that the pointers are valid. The platform sanity checks can also be removed, as the operations can't be accessed without valid platform data anyway. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
@@ -1072,14 +1072,11 @@ static int sh_mobile_fb_pan_display(struct fb_var_screeninfo *var,
|
||||
|
||||
if (ch->meram) {
|
||||
struct sh_mobile_meram_info *mdev;
|
||||
int ret;
|
||||
|
||||
mdev = priv->meram_dev;
|
||||
ret = mdev->ops->meram_update(mdev, ch->meram,
|
||||
mdev->ops->meram_update(mdev, ch->meram,
|
||||
base_addr_y, base_addr_c,
|
||||
&base_addr_y, &base_addr_c);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
||||
ch->base_addr_y = base_addr_y;
|
||||
|
Reference in New Issue
Block a user