pps_ldisc_ops      98 drivers/pps/clients/pps-ldisc.c static struct tty_ldisc_ops pps_ldisc_ops;
pps_ldisc_ops     109 drivers/pps/clients/pps-ldisc.c 	n_tty_inherit_ops(&pps_ldisc_ops);
pps_ldisc_ops     112 drivers/pps/clients/pps-ldisc.c 	alias_n_tty_open = pps_ldisc_ops.open;
pps_ldisc_ops     113 drivers/pps/clients/pps-ldisc.c 	alias_n_tty_close = pps_ldisc_ops.close;
pps_ldisc_ops     116 drivers/pps/clients/pps-ldisc.c 	pps_ldisc_ops.owner = THIS_MODULE;
pps_ldisc_ops     117 drivers/pps/clients/pps-ldisc.c 	pps_ldisc_ops.magic = PPS_TTY_MAGIC;
pps_ldisc_ops     118 drivers/pps/clients/pps-ldisc.c 	pps_ldisc_ops.name = "pps_tty";
pps_ldisc_ops     119 drivers/pps/clients/pps-ldisc.c 	pps_ldisc_ops.dcd_change = pps_tty_dcd_change;
pps_ldisc_ops     120 drivers/pps/clients/pps-ldisc.c 	pps_ldisc_ops.open = pps_tty_open;
pps_ldisc_ops     121 drivers/pps/clients/pps-ldisc.c 	pps_ldisc_ops.close = pps_tty_close;
pps_ldisc_ops     123 drivers/pps/clients/pps-ldisc.c 	err = tty_register_ldisc(N_PPS, &pps_ldisc_ops);