From: Lyude Paul <lyude@redhat.com>
To: Tom Rix <trix@redhat.com>,
bskeggs@redhat.com, kherbst@redhat.com, airlied@linux.ie,
daniel@ffwll.ch, nathan@kernel.org, ndesaulniers@google.com
Cc: dri-devel@lists.freedesktop.org, nouveau@lists.freedesktop.org,
linux-kernel@vger.kernel.org, llvm@lists.linux.dev
Subject: Re: [PATCH] drm/nouveau/bios: set info only when the return is not 0
Date: Mon, 04 Jul 2022 17:32:18 -0400 [thread overview]
Message-ID: <91194b7190081545a8eeb10d20e24de864dfe259.camel@redhat.com> (raw)
In-Reply-To: <20220702153904.1696595-1-trix@redhat.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Currently on flakey internet in the back of a car, so I probably won't be able
to push this until I get back tonight or early tomorrow
On Sat, 2022-07-02 at 11:39 -0400, Tom Rix wrote:
> clang static analysis reports
> drivers/gpu/drm/nouveau/nvkm/subdev/bios/pmu.c:68:17: warning: The right
> operand of '*' is a garbage value [core.UndefinedBinaryOperatorResult]
> switch (!!data * *ver) {
> ^ ~~~~
> A switch statement with only a default should be reduced to an if.
>
> If nvbios_pmuEp() returns 0, via the data variable, the output info
> parameter
> is not used. So set info only when data is not 0.
>
> The struct nvbios_pmuE only has the type and data elements. Since both of
> these
> are explicitly set, memset is not needed. So remove it.
>
> Signed-off-by: Tom Rix <trix@redhat.com>
> ---
> drivers/gpu/drm/nouveau/nvkm/subdev/bios/pmu.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/bios/pmu.c
> b/drivers/gpu/drm/nouveau/nvkm/subdev/bios/pmu.c
> index b4a308f3cf7b..49e2664a734c 100644
> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/bios/pmu.c
> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/bios/pmu.c
> @@ -64,12 +64,9 @@ nvbios_pmuEp(struct nvkm_bios *bios, int idx, u8 *ver, u8
> *hdr,
> struct nvbios_pmuE *info)
> {
> u32 data = nvbios_pmuEe(bios, idx, ver, hdr);
> - memset(info, 0x00, sizeof(*info));
> - switch (!!data * *ver) {
> - default:
> + if (data) {
> info->type = nvbios_rd08(bios, data + 0x00);
> info->data = nvbios_rd32(bios, data + 0x02);
> - break;
> }
> return data;
> }
--
Cheers,
Lyude Paul (she/her)
Software Engineer at Red Hat
next prev parent reply other threads:[~2022-07-04 21:32 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-02 15:39 Tom Rix
2022-07-04 21:32 ` Lyude Paul [this message]
2022-07-15 19:09 ` Lyude Paul
2022-07-15 20:24 ` Tom Rix
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=91194b7190081545a8eeb10d20e24de864dfe259.camel@redhat.com \
--to=lyude@redhat.com \
--cc=airlied@linux.ie \
--cc=bskeggs@redhat.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=kherbst@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=nathan@kernel.org \
--cc=ndesaulniers@google.com \
--cc=nouveau@lists.freedesktop.org \
--cc=trix@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®