From: zhong jiang <zhongjiang@huawei.com>
To: <mingo@redhat.com>, <tglx@linutronix.de>, <bskeggs@redhat.com>,
<airlied@linux.ie>, <robdclark@gmail.com>
Cc: <hpa@zytor.com>, <x86@kernel.org>, <linux-kernel@vger.kernel.org>,
<gregkh@linuxfoundation.org>
Subject: Re: [PATCH linux-next] driver/gpu: Fix mismatch in funciton argument type
Date: Fri, 3 Aug 2018 18:28:53 +0800 [thread overview]
Message-ID: <5B642E65.6050509@huawei.com> (raw)
In-Reply-To: <1532238088-11193-1-git-send-email-zhongjiang@huawei.com>
On 2018/7/22 13:41, zhong jiang wrote:
> Fix the following warning:
>
> drivers/gpu/drm/nouveau/dispnv50/wndw.c:570:1: error: symbol 'nv50_wndw_new_' redeclared with different type
> (originally declared at drivers/gpu/drm/nouveau/dispnv50/wndw.h:39) - incompatible argument 7 (different signedness)
>
> Signed-off-by: zhong jiang <zhongjiang@huawei.com>
> ---
> drivers/gpu/drm/nouveau/dispnv50/wndw.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/nouveau/dispnv50/wndw.h b/drivers/gpu/drm/nouveau/dispnv50/wndw.h
> index b0b6428..0770683 100644
> --- a/drivers/gpu/drm/nouveau/dispnv50/wndw.h
> +++ b/drivers/gpu/drm/nouveau/dispnv50/wndw.h
> @@ -38,8 +38,8 @@ struct nv50_wndw {
>
> int nv50_wndw_new_(const struct nv50_wndw_func *, struct drm_device *,
> enum drm_plane_type, const char *name, int index,
> - const u32 *format, enum nv50_disp_interlock_type,
> - u32 interlock_data, u32 heads, struct nv50_wndw **);
> + const u32 *format, u32 heads, enum nv50_disp_interlock_type,
> + u32 interlock_data, struct nv50_wndw **);
> void nv50_wndw_init(struct nv50_wndw *);
> void nv50_wndw_fini(struct nv50_wndw *);
> void nv50_wndw_flush_set(struct nv50_wndw *, u32 *interlock,
ping ?
prev parent reply other threads:[~2018-08-03 10:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-22 5:41 [PATCH linux-next] driver/gpu: Fix mismatch in funciton argument type zhong jiang
2018-08-03 10:28 ` zhong jiang [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5B642E65.6050509@huawei.com \
--to=zhongjiang@huawei.com \
--cc=airlied@linux.ie \
--cc=bskeggs@redhat.com \
--cc=gregkh@linuxfoundation.org \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=robdclark@gmail.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.