From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: Miquel Raynal <miquel.raynal@free-electrons.com>
Cc: Richard Weinberger <richard@nod.at>,
David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
Marek Vasut <marek.vasut@gmail.com>,
Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>,
linux-mtd@lists.infradead.org,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH] mtd: nand: Fix build issues due to an anonymous union
Date: Sat, 20 Jan 2018 14:52:56 +0100 [thread overview]
Message-ID: <20180120145256.7f588751@bbrezillon> (raw)
In-Reply-To: <20180119181127.10473-1-miquel.raynal@free-electrons.com>
On Fri, 19 Jan 2018 19:11:27 +0100
Miquel Raynal <miquel.raynal@free-electrons.com> wrote:
> GCC-4.4.4 raises errors when assigning a parameter in an anonymous
> union, leading to this kind of failure:
>
> drivers/mtd/nand/marvell_nand.c:1936:
> warning: missing braces around initializer
> warning: (near initialization for '(anonymous)[1].<anonymous>')
> error: unknown field 'data' specified in initializer
> error: unknown field 'addr' specified in initializer
>
> Work around the situation by naming these unions.
>
> Reported-by: Andrew Morton <akpm@linux-foundation.org>
> Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>
Applied.
Thanks,
Boris
> ---
> drivers/mtd/nand/nand_base.c | 13 +++++++------
> include/linux/mtd/rawnand.h | 14 ++++++++++----
> 2 files changed, 17 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
> index e4e39890a975..a3260e6207b8 100644
> --- a/drivers/mtd/nand/nand_base.c
> +++ b/drivers/mtd/nand/nand_base.c
> @@ -2332,23 +2332,24 @@ nand_op_parser_must_split_instr(const struct nand_op_parser_pattern_elem *pat,
> {
> switch (pat->type) {
> case NAND_OP_ADDR_INSTR:
> - if (!pat->addr.maxcycles)
> + if (!pat->ctx.addr.maxcycles)
> break;
>
> if (instr->ctx.addr.naddrs - *start_offset >
> - pat->addr.maxcycles) {
> - *start_offset += pat->addr.maxcycles;
> + pat->ctx.addr.maxcycles) {
> + *start_offset += pat->ctx.addr.maxcycles;
> return true;
> }
> break;
>
> case NAND_OP_DATA_IN_INSTR:
> case NAND_OP_DATA_OUT_INSTR:
> - if (!pat->data.maxlen)
> + if (!pat->ctx.data.maxlen)
> break;
>
> - if (instr->ctx.data.len - *start_offset > pat->data.maxlen) {
> - *start_offset += pat->data.maxlen;
> + if (instr->ctx.data.len - *start_offset >
> + pat->ctx.data.maxlen) {
> + *start_offset += pat->ctx.data.maxlen;
> return true;
> }
> break;
> diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h
> index 469dc724f5df..f89fd2331f4a 100644
> --- a/include/linux/mtd/rawnand.h
> +++ b/include/linux/mtd/rawnand.h
> @@ -962,7 +962,7 @@ struct nand_op_parser_pattern_elem {
> union {
> struct nand_op_parser_addr_constraints addr;
> struct nand_op_parser_data_constraints data;
> - };
> + } ctx;
> };
>
> #define NAND_OP_PARSER_PAT_CMD_ELEM(_opt) \
> @@ -975,21 +975,27 @@ struct nand_op_parser_pattern_elem {
> { \
> .type = NAND_OP_ADDR_INSTR, \
> .optional = _opt, \
> - .addr.maxcycles = _maxcycles, \
> + .ctx.addr = { \
> + .maxcycles = _maxcycles, \
> + }, \
> }
>
> #define NAND_OP_PARSER_PAT_DATA_IN_ELEM(_opt, _maxlen) \
> { \
> .type = NAND_OP_DATA_IN_INSTR, \
> .optional = _opt, \
> - .data.maxlen = _maxlen, \
> + .ctx.data = { \
> + .maxlen = _maxlen, \
> + }, \
> }
>
> #define NAND_OP_PARSER_PAT_DATA_OUT_ELEM(_opt, _maxlen) \
> { \
> .type = NAND_OP_DATA_OUT_INSTR, \
> .optional = _opt, \
> - .data.maxlen = _maxlen, \
> + .ctx.data = { \
> + .maxlen = _maxlen, \
> + }, \
> }
>
> #define NAND_OP_PARSER_PAT_WAITRDY_ELEM(_opt) \
prev parent reply other threads:[~2018-01-20 13:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-19 18:11 [PATCH] mtd: nand: Fix build issues due to an anonymous union Miquel Raynal
2018-01-19 18:13 ` Boris Brezillon
2018-01-19 19:33 ` Andrew Morton
2018-01-20 13:52 ` Boris Brezillon [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=20180120145256.7f588751@bbrezillon \
--to=boris.brezillon@free-electrons.com \
--cc=akpm@linux-foundation.org \
--cc=computersforpeace@gmail.com \
--cc=cyrille.pitchen@wedev4u.fr \
--cc=dwmw2@infradead.org \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=miquel.raynal@free-electrons.com \
--cc=richard@nod.at \
/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