Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1615852
| From | Borislav Petkov <bp@alien8.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] EDAC, altera: Fix peripheral warnings for Cyclone5 |
| Date | 2017-04-04 12:00 +0200 |
| Message-ID | <tstpM-39f-21@gated-at.bofh.it> (permalink) |
| References | <tsfmO-2dG-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Mon, Apr 03, 2017 at 02:01:06PM -0500, thor.thayer@linux.intel.com wrote:
> From: Thor Thayer <thor.thayer@linux.intel.com>
>
> The peripherals EDACs only exist on the Arria10 SoCFPGA. The Cyclone5
> initialization has EDAC warnings when the peripherals aren't found
> in the device tree. Fix by checking for Arria10 in the init functions.
>
> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
> ---
> drivers/edac/altera_edac.c | 29 +++++++++++++++++++++++++----
> 1 file changed, 25 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/edac/altera_edac.c b/drivers/edac/altera_edac.c
> index 6421cc3..98e83f5 100644
> --- a/drivers/edac/altera_edac.c
> +++ b/drivers/edac/altera_edac.c
> @@ -1024,13 +1024,30 @@ static int __maybe_unused altr_init_memory_port(void __iomem *ioaddr, int port)
> return ret;
> }
>
> +static int invalid_model(void)
> +{
> + struct device_node *np = of_find_node_by_path("/");
That needs to have its return value checked, of course.
> + const char *model = of_get_property(np, "model", NULL);
> +
> + of_node_put(np);
> + if (!model || strncmp(model, "Altera SOCFPGA Arria 10", 23) != 0)
No need for the "!= 0"
> + return -ENODEV;
> +
> + return 0;
> +}
That function name "invalid_model" sounds like a boolean: is the model
invalid. So you can simply return bools and not -ENODEV as the context
you're using it is boolean.
--
Regards/Gruss,
Boris.
Good mailing practices for 400: avoid top-posting and trim the reply.
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] EDAC, altera: Fix peripheral warnings for Cyclone5 thor.thayer@linux.intel.com - 2017-04-03 21:00 +0200
Re: [PATCH] EDAC, altera: Fix peripheral warnings for Cyclone5 Borislav Petkov <bp@alien8.de> - 2017-04-04 12:00 +0200
Re: [PATCH] EDAC, altera: Fix peripheral warnings for Cyclone5 Thor Thayer <thor.thayer@linux.intel.com> - 2017-04-04 16:30 +0200
csiph-web