Re: [PATCH v3 3/6] EDAC/amd64: Support more than two Unified Memory Controllers

From: Borislav Petkov
Date: Sat Mar 23 2019 - 08:16:32 EST


On Thu, Feb 28, 2019 at 03:36:10PM +0000, Ghannam, Yazen wrote:
> diff --git a/drivers/edac/amd64_edac.h b/drivers/edac/amd64_edac.h
> index de8dbb0b42b5..40e63cea2d81 100644
> --- a/drivers/edac/amd64_edac.h
> +++ b/drivers/edac/amd64_edac.h
> @@ -274,7 +274,11 @@
>
> #define UMC_SDP_INIT BIT(31)
>
> -#define NUM_UMCS 2
> +/*
> + * Number of Unified Memory Controllers
> + * Set during driver init based on family/model.
> + */
> +static u8 num_umcs;

Please don't do silly things like that:

In file included from drivers/edac/amd64_edac_inj.c:2:0:
drivers/edac/amd64_edac.h:279:11: warning: ânum_umcsâ defined but not used [-Wunused-variable]
static u8 num_umcs;
^~~~~~~~

I fixed it up now.

--
Regards/Gruss,
Boris.

Good mailing practices for 400: avoid top-posting and trim the reply.