[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20091210102145.GA3097@pengutronix.de>
Date: Thu, 10 Dec 2009 11:21:45 +0100
From: Wolfram Sang <w.sang@...gutronix.de>
To: Barry Song <21cnbao@...il.com>
Cc: Wolfgang Grandegger <wg@...ndegger.com>,
socketcan-core@...ts.berlios.de,
uclinux-dist-devel@...ckfin.uclinux.org, davem@...emloft.net,
"H.J. Oertel" <oe@...t.de>, netdev@...r.kernel.org
Subject: Re: [PATCH v3] add the driver for Analog Devices Blackfin on-chip
CAN controllers
> >> + if (status) {
> >> + priv->can.can_stats.bus_error++;
> >> +
> >> + cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
> >> +
> >> + if (status & BEF)
> >> + cf->data[2] |= CAN_ERR_PROT_BIT;
> >> + else if (status & FER)
> >> + cf->data[2] |= CAN_ERR_PROT_FORM;
> >> + else if (status & SER)
> >> + cf->data[2] |= CAN_ERR_PROT_STUFF;
> >> + else
> >> + cf->data[2] |= CAN_ERR_PROT_UNSPEC;
> >> + }
> >
> > Add {} here as well.
> {} will cause checkpatch warning if it is given to only one line.
Right, no need for braces here, because it is always one statement after
if/else.
> >> + if ((irq == priv->tx_irq) && readw(®->mbtif2)) {
> >> + /* transmission complete interrupt */
> >> + writew(0xFFFF, ®->mbtif2);
> >> + stats->tx_packets++;
> >> + stats->tx_bytes += bfin_can_read_dlc(priv, TRANSMIT_CHL);
> >> + can_get_echo_skb(dev, 0);
> >> + netif_wake_queue(dev);
> >> + } else if ((irq == priv->rx_irq) && readw(®->mbrif1)) {
> >> + /* receive interrupt */
> >> + isrc = readw(®->mbrif1);
> >> + writew(0xFFFF, ®->mbrif1);
> >> + bfin_can_rx(dev, isrc);
> >> + } else if ((irq == priv->err_irq) && readw(®->gis)) {
> >> + /* error interrupt */
> >> + isrc = readw(®->gis);
> >> + status = readw(®->esr);
> >> + writew(0x7FF, ®->gis);
> >> + bfin_can_err(dev, isrc, status);
> >> + } else
> >> + return IRQ_NONE;
> >
> > Use {} here as well.
> {} will cause checkpatch warning if it is given to only one line.
Then again, here braces are suggested. If the 'if'-block has braces, the
'else'-block should have braces, too. If checkpatch really complains about it,
this is a bug in checkpatch.
Regards,
Wolfram
--
Pengutronix e.K. | Wolfram Sang |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Download attachment "signature.asc" of type "application/pgp-signature" (198 bytes)
Powered by blists - more mailing lists