Prev: r8169: enable 64-bit DMA by default for PCI Express devices
Next: [tip:x86/setup] x86, setup: Don't skip mode setting for the standard VGA modes
From: Andrew Morton on 19 Feb 2010 16:50 On Tue, 16 Feb 2010 10:51:22 +0100 Rodolfo Giometti <giometti(a)linux.it> wrote: > }; > + > +void n_tty_inherit_ops(struct tty_ldisc_ops *ops) > +{ > + *ops = tty_ldisc_N_TTY; > + ops->owner = NULL; > + ops->refcount = ops->flags = 0; > +} > +EXPORT_SYMBOL_GPL(n_tty_inherit_ops); Most (nearly all) functions in n_tty.c have been documented in kerneldoc form. Let's continue that please. n_tty_inherit_ops() is of course pretty simple, but OTOH it's a global, export-to-modules interface. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |