drm: Remove unused arg from drm_fb_helper_init
The max connector argument for drm_fb_helper_init() isn't used anymore hence remove it. All the drm_fb_helper_init() calls are modified with below sementic patch. @@ expression E1, E2, E3; @@ - drm_fb_helper_init(E1,E2, E3) + drm_fb_helper_init(E1,E2) Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20200305120434.111091-2-pankaj.laxminarayan.bharadiya@intel.com
This commit is contained in:
parent
0be38b10f0
commit
2dea2d1182
@ -336,8 +336,7 @@ int amdgpu_fbdev_init(struct amdgpu_device *adev)
|
||||
drm_fb_helper_prepare(adev->ddev, &rfbdev->helper,
|
||||
&amdgpu_fb_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(adev->ddev, &rfbdev->helper,
|
||||
AMDGPUFB_CONN_LIMIT);
|
||||
ret = drm_fb_helper_init(adev->ddev, &rfbdev->helper);
|
||||
if (ret) {
|
||||
kfree(rfbdev);
|
||||
return ret;
|
||||
|
@ -129,7 +129,7 @@ int armada_fbdev_init(struct drm_device *dev)
|
||||
|
||||
drm_fb_helper_prepare(dev, fbh, &armada_fb_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(dev, fbh, 1);
|
||||
ret = drm_fb_helper_init(dev, fbh);
|
||||
if (ret) {
|
||||
DRM_ERROR("failed to initialize drm fb helper\n");
|
||||
goto err_fb_helper;
|
||||
|
@ -450,7 +450,6 @@ EXPORT_SYMBOL(drm_fb_helper_prepare);
|
||||
* drm_fb_helper_init - initialize a &struct drm_fb_helper
|
||||
* @dev: drm device
|
||||
* @fb_helper: driver-allocated fbdev helper structure to initialize
|
||||
* @max_conn_count: max connector count (not used)
|
||||
*
|
||||
* This allocates the structures for the fbdev helper with the given limits.
|
||||
* Note that this won't yet touch the hardware (through the driver interfaces)
|
||||
@ -463,8 +462,7 @@ EXPORT_SYMBOL(drm_fb_helper_prepare);
|
||||
* Zero if everything went ok, nonzero otherwise.
|
||||
*/
|
||||
int drm_fb_helper_init(struct drm_device *dev,
|
||||
struct drm_fb_helper *fb_helper,
|
||||
int max_conn_count)
|
||||
struct drm_fb_helper *fb_helper)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@ -2125,7 +2123,7 @@ static int drm_fbdev_client_hotplug(struct drm_client_dev *client)
|
||||
|
||||
drm_fb_helper_prepare(dev, fb_helper, &drm_fb_helper_generic_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(dev, fb_helper, 0);
|
||||
ret = drm_fb_helper_init(dev, fb_helper);
|
||||
if (ret)
|
||||
goto err;
|
||||
|
||||
|
@ -200,7 +200,7 @@ int exynos_drm_fbdev_init(struct drm_device *dev)
|
||||
|
||||
drm_fb_helper_prepare(dev, helper, &exynos_drm_fb_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(dev, helper, MAX_CONNECTOR);
|
||||
ret = drm_fb_helper_init(dev, helper);
|
||||
if (ret < 0) {
|
||||
DRM_DEV_ERROR(dev->dev,
|
||||
"failed to initialize drm fb helper.\n");
|
||||
|
@ -513,7 +513,7 @@ int psb_fbdev_init(struct drm_device *dev)
|
||||
|
||||
drm_fb_helper_prepare(dev, fb_helper, &psb_fb_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(dev, fb_helper, INTELFB_CONN_LIMIT);
|
||||
ret = drm_fb_helper_init(dev, fb_helper);
|
||||
if (ret)
|
||||
goto free;
|
||||
|
||||
|
@ -453,7 +453,7 @@ int intel_fbdev_init(struct drm_device *dev)
|
||||
if (!intel_fbdev_init_bios(dev, ifbdev))
|
||||
ifbdev->preferred_bpp = 32;
|
||||
|
||||
ret = drm_fb_helper_init(dev, &ifbdev->helper, 4);
|
||||
ret = drm_fb_helper_init(dev, &ifbdev->helper);
|
||||
if (ret) {
|
||||
kfree(ifbdev);
|
||||
return ret;
|
||||
|
@ -160,7 +160,7 @@ struct drm_fb_helper *msm_fbdev_init(struct drm_device *dev)
|
||||
|
||||
drm_fb_helper_prepare(dev, helper, &msm_fb_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(dev, helper, priv->num_connectors);
|
||||
ret = drm_fb_helper_init(dev, helper);
|
||||
if (ret) {
|
||||
DRM_DEV_ERROR(dev->dev, "could not init fbdev: ret=%d\n", ret);
|
||||
goto fail;
|
||||
|
@ -558,7 +558,7 @@ nouveau_fbcon_init(struct drm_device *dev)
|
||||
|
||||
drm_fb_helper_prepare(dev, &fbcon->helper, &nouveau_fbcon_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(dev, &fbcon->helper, 4);
|
||||
ret = drm_fb_helper_init(dev, &fbcon->helper);
|
||||
if (ret)
|
||||
goto free;
|
||||
|
||||
|
@ -242,7 +242,7 @@ void omap_fbdev_init(struct drm_device *dev)
|
||||
|
||||
drm_fb_helper_prepare(dev, helper, &omap_fb_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(dev, helper, priv->num_pipes);
|
||||
ret = drm_fb_helper_init(dev, helper);
|
||||
if (ret)
|
||||
goto fail;
|
||||
|
||||
|
@ -354,8 +354,7 @@ int radeon_fbdev_init(struct radeon_device *rdev)
|
||||
drm_fb_helper_prepare(rdev->ddev, &rfbdev->helper,
|
||||
&radeon_fb_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(rdev->ddev, &rfbdev->helper,
|
||||
RADEONFB_CONN_LIMIT);
|
||||
ret = drm_fb_helper_init(rdev->ddev, &rfbdev->helper);
|
||||
if (ret)
|
||||
goto free;
|
||||
|
||||
|
@ -124,7 +124,7 @@ int rockchip_drm_fbdev_init(struct drm_device *dev)
|
||||
|
||||
drm_fb_helper_prepare(dev, helper, &rockchip_drm_fb_helper_funcs);
|
||||
|
||||
ret = drm_fb_helper_init(dev, helper, ROCKCHIP_MAX_CONNECTOR);
|
||||
ret = drm_fb_helper_init(dev, helper);
|
||||
if (ret < 0) {
|
||||
DRM_DEV_ERROR(dev->dev,
|
||||
"Failed to initialize drm fb helper - %d.\n",
|
||||
|
@ -314,7 +314,7 @@ static int tegra_fbdev_init(struct tegra_fbdev *fbdev,
|
||||
struct drm_device *drm = fbdev->base.dev;
|
||||
int err;
|
||||
|
||||
err = drm_fb_helper_init(drm, &fbdev->base, max_connectors);
|
||||
err = drm_fb_helper_init(drm, &fbdev->base);
|
||||
if (err < 0) {
|
||||
dev_err(drm->dev, "failed to initialize DRM FB helper: %d\n",
|
||||
err);
|
||||
|
@ -213,8 +213,7 @@ drm_fb_helper_from_client(struct drm_client_dev *client)
|
||||
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
||||
void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
|
||||
const struct drm_fb_helper_funcs *funcs);
|
||||
int drm_fb_helper_init(struct drm_device *dev,
|
||||
struct drm_fb_helper *helper, int max_conn);
|
||||
int drm_fb_helper_init(struct drm_device *dev, struct drm_fb_helper *helper);
|
||||
void drm_fb_helper_fini(struct drm_fb_helper *helper);
|
||||
int drm_fb_helper_blank(int blank, struct fb_info *info);
|
||||
int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
|
||||
@ -279,8 +278,7 @@ static inline void drm_fb_helper_prepare(struct drm_device *dev,
|
||||
}
|
||||
|
||||
static inline int drm_fb_helper_init(struct drm_device *dev,
|
||||
struct drm_fb_helper *helper,
|
||||
int max_conn)
|
||||
struct drm_fb_helper *helper)
|
||||
{
|
||||
/* So drivers can use it to free the struct */
|
||||
helper->dev = dev;
|
||||
|
Loading…
Reference in New Issue
Block a user