1: /* 2: * DM-BB fake driver 3: */ 4: #include "../h/param.h" 5: #include "../h/tty.h" 6: #include "../h/conf.h" 7: 8: struct tty dh11[]; 9: 10: dmopen(dev) 11: { 12: register struct tty *tp; 13: 14: tp = &dh11[minor(dev)]; 15: tp->t_state |= CARR_ON; 16: } 17: 18: dmctl(dev, bits) 19: { 20: }