[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAHb8M2BM6H8Rutm9GEwaXv00QSTHOVtBJsvjEn-sLR9eYvRK=Q@mail.gmail.com>
Date: Fri, 9 May 2014 17:26:38 +0900
From: DaeSeok Youn <daeseok.youn@...il.com>
To: Dan Carpenter <dan.carpenter@...cle.com>
Cc: Greg KH <gregkh@...uxfoundation.org>,
devel <devel@...verdev.osuosl.org>,
nandini h <nandu.hgowda@...il.com>,
"sachin.kamat" <sachin.kamat@...aro.org>,
peter.p.waskiewicz.jr@...el.com,
linux-kernel <linux-kernel@...r.kernel.org>,
Himangi Saraogi <himangi774@...il.com>,
Chekameh Cobbler <fempsci@...il.com>
Subject: Re: [PATCH 2/3] Staging: cxt1e1: Fix line length over 80 characters
in musycc.c
2014-05-09 17:07 GMT+09:00 Dan Carpenter <dan.carpenter@...cle.com>:
> This patch is ok, but here are some additional hints.
>
> On Fri, May 09, 2014 at 10:39:48AM +0900, Daeseok Youn wrote:
>> @@ -1100,7 +1102,9 @@ musycc_bh_rx_eom(mpi_t *pi, int gchan)
>> */
>> if (hdlcnum >= 228) {
>> if (nciProcess_RX_packet)
>> - (*nciProcess_RX_packet) (hdlcnum, status & 0x3fff, m, ch->user);
>> + (*nciProcess_RX_packet)(hdlcnum, status &
>> + 0x3fff, m,
>> + ch->user);
>
> It's possible to break this one up at the commas.
Oh.. I will do that.
>
> (*nciProcess_RX_packet)(hdlcnum,
> status & 0x3fff,
> m, ch->user);
>
>> } else
>> #endif /* CONFIG_SBE_WAN256T3_NCOMM */
>> {
>> @@ -1379,7 +1383,8 @@ musycc_intr_bh_tasklet(ci_t *ci)
>> else
>> ci->iqd_p[headx] =
>> __constant_cpu_to_le32(INT_EMPTY_ENTRY);
>> - ci->iqp_headx = (headx + 1) & (INT_QUEUE_SIZE - 1); /* insure wrapness */
>> + /* insure wrapness */
>> + ci->iqp_headx = (headx + 1) & (INT_QUEUE_SIZE - 1);
>> FLUSH_MEM_WRITE();
>> FLUSH_MEM_READ();
>> continue;
>> @@ -1516,7 +1521,8 @@ musycc_intr_bh_tasklet(ci_t *ci)
>> pr_info("%s: RX buffer overflow [ONR] on channel %d, mode %x\n",
>> ci->devname, ch->channum,
>> ch->p.chan_mode);
>> - //musycc_dump_rxbuffer_ring (ch, 0); /* RLD DEBUG */
>> + /* RLD DEBUG */
>> + //musycc_dump_rxbuffer_ring (ch, 0);
>
> Just delete this commented out code.
Yes. it can be removed.
>
>> }
>> }
>> musycc_chan_restart(ch);
>> @@ -1573,7 +1579,8 @@ musycc_intr_bh_tasklet(ci_t *ci)
>> } /* switch on err */
>>
>> /* Check for interrupt lost condition */
>> - if ((currInt & INTRPT_ILOST_M) && (cxt1e1_log_level >= LOG_ERROR))
>> + if ((currInt & INTRPT_ILOST_M) &&
>> + (cxt1e1_log_level >= LOG_ERROR))
>> pr_info("%s: Interrupt queue overflow - ILOST asserted\n",
>> ci->devname);
>> /* insure wrapness */
>> @@ -1684,7 +1691,8 @@ musycc_del_chan(ci_t *ci, int channum)
>> {
>> mch_t *ch;
>>
>> - if ((channum < 0) || (channum >= (MUSYCC_NPORTS * MUSYCC_NCHANS))) /* sanity chk param */
>> + /* sanity chk param */
>
> This kind of comment is too obvious. Just delete it.
musycc_del_chan() in "#if 0" block will be removed it is not needed.
>
>> + if ((channum < 0) || (channum >= (MUSYCC_NPORTS * MUSYCC_NCHANS)))
>> return ECHRNG;
>> ch = sd_find_chan(ci, channum);
>> if (!ch)
>
> regards,
> dan carpenter
Thanks.
Regards,
Daeseok Youn.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists