* [PATCH] usb: typec: intel_pmc_mux: Zero initialize num_ports in pmc_usb_probe()
@ 2026-05-06 6:05 Nathan Chancellor
2026-05-06 9:39 ` Heikki Krogerus
0 siblings, 1 reply; 2+ messages in thread
From: Nathan Chancellor @ 2026-05-06 6:05 UTC (permalink / raw)
To: Heikki Krogerus, Greg Kroah-Hartman
Cc: Rosen Penev, linux-usb, linux-kernel, llvm, kernelci.org bot,
Nathan Chancellor
Clang warns (or errors with CONFIG_WERROR=y / W=e):
drivers/usb/typec/mux/intel_pmc_mux.c:740:3: error: variable 'num_ports' is uninitialized when used here [-Werror,-Wuninitialized]
740 | num_ports++;
| ^~~~~~~~~
This should have been initialized to zero. Do so now to clean up the
warning and ensure num_ports does not use uninitialized memory.
Fixes: 8bdb0b3830ea ("usb: typec: intel_pmc_mux: combine kzalloc + kcalloc")
Reported-by: kernelci.org bot <bot@kernelci.org>
Closes: https://lore.kernel.org/177793914437.2560.9287713196857718000@997d03828cfd/
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
---
drivers/usb/typec/mux/intel_pmc_mux.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/typec/mux/intel_pmc_mux.c b/drivers/usb/typec/mux/intel_pmc_mux.c
index e22b070a140f..219a32da1348 100644
--- a/drivers/usb/typec/mux/intel_pmc_mux.c
+++ b/drivers/usb/typec/mux/intel_pmc_mux.c
@@ -732,7 +732,7 @@ static int pmc_usb_probe(struct platform_device *pdev)
{
struct fwnode_handle *fwnode = NULL;
struct pmc_usb *pmc;
- u8 num_ports;
+ u8 num_ports = 0;
int i = 0;
int ret;
---
base-commit: 25bd55f46032656012eecdc6eabd62f2685a2ccc
change-id: 20260506-typec-intel_pmc_mux-fix-uninit-num_ports-3567859e7deb
Best regards,
--
Cheers,
Nathan
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] usb: typec: intel_pmc_mux: Zero initialize num_ports in pmc_usb_probe()
2026-05-06 6:05 [PATCH] usb: typec: intel_pmc_mux: Zero initialize num_ports in pmc_usb_probe() Nathan Chancellor
@ 2026-05-06 9:39 ` Heikki Krogerus
0 siblings, 0 replies; 2+ messages in thread
From: Heikki Krogerus @ 2026-05-06 9:39 UTC (permalink / raw)
To: Nathan Chancellor
Cc: Greg Kroah-Hartman, Rosen Penev, linux-usb, linux-kernel, llvm,
kernelci.org bot
On Wed, May 06, 2026 at 02:05:54PM +0800, Nathan Chancellor wrote:
> Clang warns (or errors with CONFIG_WERROR=y / W=e):
>
> drivers/usb/typec/mux/intel_pmc_mux.c:740:3: error: variable 'num_ports' is uninitialized when used here [-Werror,-Wuninitialized]
> 740 | num_ports++;
> | ^~~~~~~~~
>
> This should have been initialized to zero. Do so now to clean up the
> warning and ensure num_ports does not use uninitialized memory.
>
> Fixes: 8bdb0b3830ea ("usb: typec: intel_pmc_mux: combine kzalloc + kcalloc")
> Reported-by: kernelci.org bot <bot@kernelci.org>
> Closes: https://lore.kernel.org/177793914437.2560.9287713196857718000@997d03828cfd/
> Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> ---
> drivers/usb/typec/mux/intel_pmc_mux.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/typec/mux/intel_pmc_mux.c b/drivers/usb/typec/mux/intel_pmc_mux.c
> index e22b070a140f..219a32da1348 100644
> --- a/drivers/usb/typec/mux/intel_pmc_mux.c
> +++ b/drivers/usb/typec/mux/intel_pmc_mux.c
> @@ -732,7 +732,7 @@ static int pmc_usb_probe(struct platform_device *pdev)
> {
> struct fwnode_handle *fwnode = NULL;
> struct pmc_usb *pmc;
> - u8 num_ports;
> + u8 num_ports = 0;
> int i = 0;
> int ret;
>
thanks,
--
heikki
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-05-06 9:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-06 6:05 [PATCH] usb: typec: intel_pmc_mux: Zero initialize num_ports in pmc_usb_probe() Nathan Chancellor
2026-05-06 9:39 ` Heikki Krogerus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox