Deleted Added
full compact
rc.c (12724) rc.c (12731)
1/*
2 * Copyright (C) 1995 by Pavel Antonov, Moscow, Russia.
3 * Copyright (C) 1995 by Andrey A. Chernov, Moscow, Russia.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

101};
102
103static d_open_t rcopen;
104static d_close_t rcclose;
105static d_read_t rcread;
106static d_write_t rcwrite;
107static d_ioctl_t rcioctl;
108static d_stop_t rcstop;
1/*
2 * Copyright (C) 1995 by Pavel Antonov, Moscow, Russia.
3 * Copyright (C) 1995 by Andrey A. Chernov, Moscow, Russia.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

101};
102
103static d_open_t rcopen;
104static d_close_t rcclose;
105static d_read_t rcread;
106static d_write_t rcwrite;
107static d_ioctl_t rcioctl;
108static d_stop_t rcstop;
109static d_ttycv_t rcdevtotty;
109static d_devtotty_t rcdevtotty;
110
111#define CDEV_MAJOR 63
112static struct cdevsw rc_cdevsw =
113 { rcopen, rcclose, rcread, rcwrite, /*63*/
114 rcioctl, rcstop, nxreset, rcdevtotty,/* rc */
115 ttselect, nommap, NULL, "rc", NULL, -1 };
116
117/* Per-board structure */

--- 1431 unchanged lines hidden ---
110
111#define CDEV_MAJOR 63
112static struct cdevsw rc_cdevsw =
113 { rcopen, rcclose, rcread, rcwrite, /*63*/
114 rcioctl, rcstop, nxreset, rcdevtotty,/* rc */
115 ttselect, nommap, NULL, "rc", NULL, -1 };
116
117/* Per-board structure */

--- 1431 unchanged lines hidden ---