Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1186737
| From | Craig Inches <craig.inches@xayto.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2] Drivers: Staging: dgnc: Fix Style Issues |
| Date | 2015-07-17 13:50 +0200 |
| Message-ID | <pNcjp-4ml-13@gated-at.bofh.it> (permalink) |
| References | <pMWHE-7fR-23@gated-at.bofh.it> <pMXNn-l1-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Thu, Jul 16, 2015 at 11:13:43PM +0300, Dan Carpenter wrote:
> On Fri, Jul 17, 2015 at 03:03:24AM +0000, Craig Inches wrote:
> > Fixed multiple instances of:
> >
> > CHECK: Alignment should match open parenthesis
> > CHECK: Blank lines aren't necessary before a close brace '}'
> > CHECK: Please don't use multiple blank lines
> > CHECK: Blank lines aren't necessary after an open brace '{'
> > WARNING: line over 80 characters
> >
>
> Split the patch into 5 patches.
Sorry.. I dont know why I didnt do that.
> > @@ -186,18 +191,23 @@ int dgnc_tty_register(struct dgnc_board *brd)
> > brd->SerialDriver.subtype = SERIAL_TYPE_NORMAL;
> > brd->SerialDriver.init_termios = DgncDefaultTermios;
> > brd->SerialDriver.driver_name = DRVSTR;
> > - brd->SerialDriver.flags = (TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_HARDWARE_BREAK);
> > + brd->SerialDriver.flags = (TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV
> > + | TTY_DRIVER_HARDWARE_BREAK);
>
> The operator goes on the end.
>
> brd->SerialDriver.flags = (TTY_DRIVER_REAL_RAW |
> TTY_DRIVER_DYNAMIC_DEV |
> TTY_DRIVER_HARDWARE_BREAK);
Thanks I saw a combination of either, I will take another look.
> > kref_init(&brd->PrintDriver.kref);
> > - brd->PrintDriver.termios = kcalloc(brd->maxports, sizeof(*brd->PrintDriver.termios), GFP_KERNEL);
> > + brd->PrintDriver.termios = kcalloc(brd->maxports,
> > + sizeof(*brd->PrintDriver.termios),
> > + GFP_KERNEL);
>
> Not aligned correctly.
>
> > if (ch->ch_tun.un_flags & UN_ISOPEN) {
> > if ((ch->ch_tun.un_tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
> > - ch->ch_tun.un_tty->ldisc->ops->write_wakeup) {
> > - spin_unlock_irqrestore(&ch->ch_lock, flags);
> > - (ch->ch_tun.un_tty->ldisc->ops->write_wakeup)(ch->ch_tun.un_tty);
> > - spin_lock_irqsave(&ch->ch_lock, flags);
> > + ch->ch_tun.un_tty->ldisc->ops->write_wakeup) {
> > + spin_unlock_irqrestore(&ch->ch_lock, flags);
> > + (ch->ch_tun.un_tty->ldisc->ops->write_wakeup)
> > + (ch->ch_tun.un_tty);
> > + spin_lock_irqsave(&ch->ch_lock, flags);
> > }
>
> This isn't correct at all.
OK, Ill another look at this aswell. Thank you for the feedback
Dan.
> regards,
> dan carpenter
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v2] Drivers: Staging: dgnc: Fix Style Issues Craig Inches <craig.inches@xayto.net> - 2015-07-16 21:10 +0200
Re: [PATCH v2] Drivers: Staging: dgnc: Fix Style Issues Dan Carpenter <dan.carpenter@oracle.com> - 2015-07-16 22:20 +0200
Re: [PATCH v2] Drivers: Staging: dgnc: Fix Style Issues Craig Inches <craig.inches@xayto.net> - 2015-07-17 13:50 +0200
csiph-web