Re: [net-next PATCH RFC v6 12/16] net: dsa: qca8k: add support for mdio read/write in Ethernet packet
From: Ansuel Smith <ansuelsmth@gmail.com>
Date: 2021-12-15 16:57:25
Also in:
lkml
From: Ansuel Smith <ansuelsmth@gmail.com>
Date: 2021-12-15 16:57:25
Also in:
lkml
On Wed, Dec 15, 2021 at 02:47:58PM +0200, Vladimir Oltean wrote:
On Tue, Dec 14, 2021 at 11:44:05PM +0100, Ansuel Smith wrote:quoted
+static int qca8k_connect_tag_protocol(struct dsa_switch *ds, + enum dsa_tag_protocol proto) +{ + struct qca8k_priv *qca8k_priv = ds->priv; + + switch (proto) { + case DSA_TAG_PROTO_QCA: + struct tag_qca_priv *priv;Actually this fails to compile: drivers/net/dsa/qca8k.c: In function ‘qca8k_connect_tag_protocol’: drivers/net/dsa/qca8k.c:2893:3: error: a label can only be part of a statement and a declaration is not a statement 2893 | struct tag_qca_priv *priv; | ^~~~~~ make[3]: *** [scripts/Makefile.build:287: drivers/net/dsa/qca8k.o] Error 1 This is what the {} brackets are for. Also, while you're at this, please name "priv" "tagger_data".
I didn't have this error, sorry. Just to make sure I didn't make these kind of error anymore what compile did you use and with what flags?
quoted
+ + priv = ds->tagger_data; + + mutex_init(&qca8k_priv->mdio_hdr_data.mutex); + init_completion(&qca8k_priv->mdio_hdr_data.rw_done); + + priv->rw_reg_ack_handler = qca8k_rw_reg_ack_handler; + + break; + default: + return -EOPNOTSUPP; + } + + return 0; }
-- Ansuel