Deleted Added
full compact
sicontrol.c (50479) sicontrol.c (51960)
1/*
2 * Device driver for Specialix range (SLXOS) of serial line multiplexors.
3 * SLXOS configuration and debug interface
4 *
5 * Copyright (C) 1990, 1992 Specialix International,
6 * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
7 * Copyright (C) 1995, Peter Wemm <peter@haywire.dialix.com>
8 *

--- 19 unchanged lines hidden (view full) ---

28 * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
29 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
30 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
31 * NO EVENT SHALL THE AUTHORS BE LIABLE.
32 */
33
34#ifndef lint
35static const char rcsid[] =
1/*
2 * Device driver for Specialix range (SLXOS) of serial line multiplexors.
3 * SLXOS configuration and debug interface
4 *
5 * Copyright (C) 1990, 1992 Specialix International,
6 * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
7 * Copyright (C) 1995, Peter Wemm <peter@haywire.dialix.com>
8 *

--- 19 unchanged lines hidden (view full) ---

28 * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
29 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
30 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
31 * NO EVENT SHALL THE AUTHORS BE LIABLE.
32 */
33
34#ifndef lint
35static const char rcsid[] =
36 "$FreeBSD: head/usr.sbin/sicontrol/sicontrol.c 50479 1999-08-28 01:35:59Z peter $";
36 "$FreeBSD: head/usr.sbin/sicontrol/sicontrol.c 51960 1999-10-06 07:45:30Z n_hibma $";
37#endif /* not lint */
38
39#include <ctype.h>
40#include <err.h>
41#include <fcntl.h>
42#include <stdio.h>
43#include <stdlib.h>
44#include <string.h>
45#include <sys/types.h>
46#include <sys/param.h>
47#include <sys/stat.h>
48#include <sys/ioctl.h>
37#endif /* not lint */
38
39#include <ctype.h>
40#include <err.h>
41#include <fcntl.h>
42#include <stdio.h>
43#include <stdlib.h>
44#include <string.h>
45#include <sys/types.h>
46#include <sys/param.h>
47#include <sys/stat.h>
48#include <sys/ioctl.h>
49#include <sys/device.h>
50#include <sys/tty.h>
51
52#include <machine/si.h>
53
54struct lv {
55 char *lv_name;
56 int lv_bit;
57} lv[] = {

--- 530 unchanged lines hidden ---
49#include <sys/tty.h>
50
51#include <machine/si.h>
52
53struct lv {
54 char *lv_name;
55 int lv_bit;
56} lv[] = {

--- 530 unchanged lines hidden ---