[PATCH] imx-drm: imx-drm-core: Convert to drm_is_master()

David Herrmann dh.herrmann at gmail.com
Thu Jul 24 23:14:29 PDT 2014


Hi

On Fri, Jul 25, 2014 at 5:08 AM, Fabio Estevam <festevam at gmail.com> wrote:
> From: Fabio Estevam <fabio.estevam at freescale.com>
>
> Since commit fe32c9f34b9e ("drm: drop redundant drm_file->is_master")
> we should use drm_is_master, otherwise the following build error is seen:
>
> drivers/staging/imx-drm/imx-drm-core.c: In function 'imx_drm_driver_preclose':
> drivers/staging/imx-drm/imx-drm-core.c:185:11: error: 'struct drm_file' has no member named 'is_master'
>
> Reported-by: kbuild test robot <fengguang.wu at intel.com>
> Signed-off-by: Fabio Estevam <fabio.estevam at freescale.com>

Sorry, I totally missed staging. I amended the imx changes now.

Thanks
David

> ---
> This one should go via David Herrmann's tree.
>
>  drivers/staging/imx-drm/imx-drm-core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/imx-drm/imx-drm-core.c b/drivers/staging/imx-drm/imx-drm-core.c
> index 6b22106..7974854 100644
> --- a/drivers/staging/imx-drm/imx-drm-core.c
> +++ b/drivers/staging/imx-drm/imx-drm-core.c
> @@ -182,7 +182,7 @@ static void imx_drm_driver_preclose(struct drm_device *drm,
>  {
>         int i;
>
> -       if (!file->is_master)
> +       if (!drm_is_master(file))
>                 return;
>
>         for (i = 0; i < MAX_CRTC; i++)
> --
> 1.8.3.2
>


More information about the dri-devel mailing list