mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
b24413180f
Many source files in the tree are missing licensing information, which makes it harder for compliance tools to determine the correct license. By default all files without license information are under the default license of the kernel, which is GPL version 2. Update the files which contain no license information with the 'GPL-2.0' SPDX license identifier. The SPDX identifier is a legally binding shorthand, which can be used instead of the full boiler plate text. This patch is based on work done by Thomas Gleixner and Kate Stewart and Philippe Ombredanne. How this work was done: Patches were generated and checked against linux-4.14-rc6 for a subset of the use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information, Further patches will be generated in subsequent months to fix up cases where non-standard license headers were used, and references to license had to be inferred by heuristics based on keywords. The analysis to determine which SPDX License Identifier to be applied to a file was done in a spreadsheet of side by side results from of the output of two independent scanners (ScanCode & Windriver) producing SPDX tag:value files created by Philippe Ombredanne. Philippe prepared the base worksheet, and did an initial spot review of a few 1000 files. The 4.13 kernel was the starting point of the analysis with 60,537 files assessed. Kate Stewart did a file by file comparison of the scanner results in the spreadsheet to determine which SPDX license identifier(s) to be applied to the file. She confirmed any determination that was not immediately clear with lawyers working with the Linux Foundation. Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained >5 lines of source - File already had some variant of a license header in it (even if <5 lines). All documentation files were explicitly excluded. The following heuristics were used to determine which SPDX license identifiers to apply. - when both scanners couldn't find any license traces, file was considered to have no license information in it, and the top level COPYING file license applied. For non */uapi/* files that summary was: SPDX license identifier # files ---------------------------------------------------|------- GPL-2.0 11139 and resulted in the first patch in this series. If that file was a */uapi/* path one, it was "GPL-2.0 WITH Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was: SPDX license identifier # files ---------------------------------------------------|------- GPL-2.0 WITH Linux-syscall-note 930 and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one of the */uapi/* ones, it was denoted with the Linux-syscall-note if any GPL family license was found in the file or had no licensing in it (per prior point). Results summary: SPDX license identifier # files ---------------------------------------------------|------ GPL-2.0 WITH Linux-syscall-note 270 GPL-2.0+ WITH Linux-syscall-note 169 ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21 ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17 LGPL-2.1+ WITH Linux-syscall-note 15 GPL-1.0+ WITH Linux-syscall-note 14 ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5 LGPL-2.0+ WITH Linux-syscall-note 4 LGPL-2.1 WITH Linux-syscall-note 3 ((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3 ((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1 and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became the concluded license(s). - when there was disagreement between the two scanners (one detected a license but the other didn't, or they both detected different licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file resulted in a clear resolution of the license that should apply (and which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier, the file was flagged for further research and to be revisited later in time. In total, over 70 hours of logged manual review was done on the spreadsheet to determine the SPDX license identifiers to apply to the source files by Kate, Philippe, Thomas and, in some cases, confirmation by lawyers working with the Linux Foundation. Kate also obtained a third independent scan of the 4.13 code base from FOSSology, and compared selected files where the other two scanners disagreed against that SPDX file, to see if there was new insights. The Windriver scanner is based on an older version of FOSSology in part, so they are related. Thomas did random spot checks in about 500 files from the spreadsheets for the uapi headers and agreed with SPDX license identifier in the files he inspected. For the non-uapi files Thomas did random spot checks in about 15000 files. In initial set of patches against 4.14-rc6, 3 files were found to have copy/paste license identifier errors, and have been fixed to reflect the correct identifier. Additionally Philippe spent 10 hours this week doing a detailed manual inspection and review of the 12,461 patched files from the initial patch version early this week with: - a full scancode scan run, collecting the matched texts, detected license ids and scores - reviewing anything where there was a license detected (about 500+ files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied SPDX license was correct This produced a worksheet with 20 files needing minor correction. This worksheet was then exported into 3 different .csv files for the different types of files to be modified. These .csv files were then reviewed by Greg. Thomas wrote a script to parse the csv files and add the proper SPDX tag to the file, in the format that the file expected. This script was further refined by Greg based on the output to detect more types of files automatically and to distinguish between header and source .c files (which need different comment types.) Finally Greg ran the script using the .csv files to generate the patches. Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
535 lines
12 KiB
C
535 lines
12 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Simulated Serial Driver (fake serial)
|
|
*
|
|
* This driver is mostly used for bringup purposes and will go away.
|
|
* It has a strong dependency on the system console. All outputs
|
|
* are rerouted to the same facility as the one used by printk which, in our
|
|
* case means sys_sim.c console (goes via the simulator).
|
|
*
|
|
* Copyright (C) 1999-2000, 2002-2003 Hewlett-Packard Co
|
|
* Stephane Eranian <eranian@hpl.hp.com>
|
|
* David Mosberger-Tang <davidm@hpl.hp.com>
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/sched/debug.h>
|
|
#include <linux/tty.h>
|
|
#include <linux/tty_flip.h>
|
|
#include <linux/major.h>
|
|
#include <linux/fcntl.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/seq_file.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/capability.h>
|
|
#include <linux/circ_buf.h>
|
|
#include <linux/console.h>
|
|
#include <linux/irq.h>
|
|
#include <linux/module.h>
|
|
#include <linux/serial.h>
|
|
#include <linux/sysrq.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <asm/hpsim.h>
|
|
|
|
#include "hpsim_ssc.h"
|
|
|
|
#undef SIMSERIAL_DEBUG /* define this to get some debug information */
|
|
|
|
#define KEYBOARD_INTR 3 /* must match with simulator! */
|
|
|
|
#define NR_PORTS 1 /* only one port for now */
|
|
|
|
struct serial_state {
|
|
struct tty_port port;
|
|
struct circ_buf xmit;
|
|
int irq;
|
|
int x_char;
|
|
};
|
|
|
|
static struct serial_state rs_table[NR_PORTS];
|
|
|
|
struct tty_driver *hp_simserial_driver;
|
|
|
|
static struct console *console;
|
|
|
|
static void receive_chars(struct tty_port *port)
|
|
{
|
|
unsigned char ch;
|
|
static unsigned char seen_esc = 0;
|
|
|
|
while ( (ch = ia64_ssc(0, 0, 0, 0, SSC_GETCHAR)) ) {
|
|
if (ch == 27 && seen_esc == 0) {
|
|
seen_esc = 1;
|
|
continue;
|
|
} else if (seen_esc == 1 && ch == 'O') {
|
|
seen_esc = 2;
|
|
continue;
|
|
} else if (seen_esc == 2) {
|
|
if (ch == 'P') /* F1 */
|
|
show_state();
|
|
#ifdef CONFIG_MAGIC_SYSRQ
|
|
if (ch == 'S') { /* F4 */
|
|
do {
|
|
ch = ia64_ssc(0, 0, 0, 0, SSC_GETCHAR);
|
|
} while (!ch);
|
|
handle_sysrq(ch);
|
|
}
|
|
#endif
|
|
seen_esc = 0;
|
|
continue;
|
|
}
|
|
seen_esc = 0;
|
|
|
|
if (tty_insert_flip_char(port, ch, TTY_NORMAL) == 0)
|
|
break;
|
|
}
|
|
tty_flip_buffer_push(port);
|
|
}
|
|
|
|
/*
|
|
* This is the serial driver's interrupt routine for a single port
|
|
*/
|
|
static irqreturn_t rs_interrupt_single(int irq, void *dev_id)
|
|
{
|
|
struct serial_state *info = dev_id;
|
|
|
|
receive_chars(&info->port);
|
|
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
/*
|
|
* -------------------------------------------------------------------
|
|
* Here ends the serial interrupt routines.
|
|
* -------------------------------------------------------------------
|
|
*/
|
|
|
|
static int rs_put_char(struct tty_struct *tty, unsigned char ch)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
unsigned long flags;
|
|
|
|
if (!info->xmit.buf)
|
|
return 0;
|
|
|
|
local_irq_save(flags);
|
|
if (CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE) == 0) {
|
|
local_irq_restore(flags);
|
|
return 0;
|
|
}
|
|
info->xmit.buf[info->xmit.head] = ch;
|
|
info->xmit.head = (info->xmit.head + 1) & (SERIAL_XMIT_SIZE-1);
|
|
local_irq_restore(flags);
|
|
return 1;
|
|
}
|
|
|
|
static void transmit_chars(struct tty_struct *tty, struct serial_state *info,
|
|
int *intr_done)
|
|
{
|
|
int count;
|
|
unsigned long flags;
|
|
|
|
local_irq_save(flags);
|
|
|
|
if (info->x_char) {
|
|
char c = info->x_char;
|
|
|
|
console->write(console, &c, 1);
|
|
|
|
info->x_char = 0;
|
|
|
|
goto out;
|
|
}
|
|
|
|
if (info->xmit.head == info->xmit.tail || tty->stopped) {
|
|
#ifdef SIMSERIAL_DEBUG
|
|
printk("transmit_chars: head=%d, tail=%d, stopped=%d\n",
|
|
info->xmit.head, info->xmit.tail, tty->stopped);
|
|
#endif
|
|
goto out;
|
|
}
|
|
/*
|
|
* We removed the loop and try to do it in to chunks. We need
|
|
* 2 operations maximum because it's a ring buffer.
|
|
*
|
|
* First from current to tail if possible.
|
|
* Then from the beginning of the buffer until necessary
|
|
*/
|
|
|
|
count = min(CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE),
|
|
SERIAL_XMIT_SIZE - info->xmit.tail);
|
|
console->write(console, info->xmit.buf+info->xmit.tail, count);
|
|
|
|
info->xmit.tail = (info->xmit.tail+count) & (SERIAL_XMIT_SIZE-1);
|
|
|
|
/*
|
|
* We have more at the beginning of the buffer
|
|
*/
|
|
count = CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
|
|
if (count) {
|
|
console->write(console, info->xmit.buf, count);
|
|
info->xmit.tail += count;
|
|
}
|
|
out:
|
|
local_irq_restore(flags);
|
|
}
|
|
|
|
static void rs_flush_chars(struct tty_struct *tty)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
|
|
if (info->xmit.head == info->xmit.tail || tty->stopped ||
|
|
!info->xmit.buf)
|
|
return;
|
|
|
|
transmit_chars(tty, info, NULL);
|
|
}
|
|
|
|
static int rs_write(struct tty_struct * tty,
|
|
const unsigned char *buf, int count)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
int c, ret = 0;
|
|
unsigned long flags;
|
|
|
|
if (!info->xmit.buf)
|
|
return 0;
|
|
|
|
local_irq_save(flags);
|
|
while (1) {
|
|
c = CIRC_SPACE_TO_END(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
|
|
if (count < c)
|
|
c = count;
|
|
if (c <= 0) {
|
|
break;
|
|
}
|
|
memcpy(info->xmit.buf + info->xmit.head, buf, c);
|
|
info->xmit.head = ((info->xmit.head + c) &
|
|
(SERIAL_XMIT_SIZE-1));
|
|
buf += c;
|
|
count -= c;
|
|
ret += c;
|
|
}
|
|
local_irq_restore(flags);
|
|
/*
|
|
* Hey, we transmit directly from here in our case
|
|
*/
|
|
if (CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE) &&
|
|
!tty->stopped)
|
|
transmit_chars(tty, info, NULL);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int rs_write_room(struct tty_struct *tty)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
|
|
return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
|
|
}
|
|
|
|
static int rs_chars_in_buffer(struct tty_struct *tty)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
|
|
return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
|
|
}
|
|
|
|
static void rs_flush_buffer(struct tty_struct *tty)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
unsigned long flags;
|
|
|
|
local_irq_save(flags);
|
|
info->xmit.head = info->xmit.tail = 0;
|
|
local_irq_restore(flags);
|
|
|
|
tty_wakeup(tty);
|
|
}
|
|
|
|
/*
|
|
* This function is used to send a high-priority XON/XOFF character to
|
|
* the device
|
|
*/
|
|
static void rs_send_xchar(struct tty_struct *tty, char ch)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
|
|
info->x_char = ch;
|
|
if (ch) {
|
|
/*
|
|
* I guess we could call console->write() directly but
|
|
* let's do that for now.
|
|
*/
|
|
transmit_chars(tty, info, NULL);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* ------------------------------------------------------------
|
|
* rs_throttle()
|
|
*
|
|
* This routine is called by the upper-layer tty layer to signal that
|
|
* incoming characters should be throttled.
|
|
* ------------------------------------------------------------
|
|
*/
|
|
static void rs_throttle(struct tty_struct * tty)
|
|
{
|
|
if (I_IXOFF(tty))
|
|
rs_send_xchar(tty, STOP_CHAR(tty));
|
|
|
|
printk(KERN_INFO "simrs_throttle called\n");
|
|
}
|
|
|
|
static void rs_unthrottle(struct tty_struct * tty)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
|
|
if (I_IXOFF(tty)) {
|
|
if (info->x_char)
|
|
info->x_char = 0;
|
|
else
|
|
rs_send_xchar(tty, START_CHAR(tty));
|
|
}
|
|
printk(KERN_INFO "simrs_unthrottle called\n");
|
|
}
|
|
|
|
static int rs_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg)
|
|
{
|
|
if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
|
|
(cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
|
|
(cmd != TIOCMIWAIT)) {
|
|
if (tty_io_error(tty))
|
|
return -EIO;
|
|
}
|
|
|
|
switch (cmd) {
|
|
case TIOCGSERIAL:
|
|
case TIOCSSERIAL:
|
|
case TIOCSERGSTRUCT:
|
|
case TIOCMIWAIT:
|
|
return 0;
|
|
case TIOCSERCONFIG:
|
|
case TIOCSERGETLSR: /* Get line status register */
|
|
return -EINVAL;
|
|
case TIOCSERGWILD:
|
|
case TIOCSERSWILD:
|
|
/* "setserial -W" is called in Debian boot */
|
|
printk (KERN_INFO "TIOCSER?WILD ioctl obsolete, ignored.\n");
|
|
return 0;
|
|
}
|
|
return -ENOIOCTLCMD;
|
|
}
|
|
|
|
#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
|
|
|
|
/*
|
|
* This routine will shutdown a serial port; interrupts are disabled, and
|
|
* DTR is dropped if the hangup on close termio flag is on.
|
|
*/
|
|
static void shutdown(struct tty_port *port)
|
|
{
|
|
struct serial_state *info = container_of(port, struct serial_state,
|
|
port);
|
|
unsigned long flags;
|
|
|
|
local_irq_save(flags);
|
|
if (info->irq)
|
|
free_irq(info->irq, info);
|
|
|
|
if (info->xmit.buf) {
|
|
free_page((unsigned long) info->xmit.buf);
|
|
info->xmit.buf = NULL;
|
|
}
|
|
local_irq_restore(flags);
|
|
}
|
|
|
|
static void rs_close(struct tty_struct *tty, struct file * filp)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
|
|
tty_port_close(&info->port, tty, filp);
|
|
}
|
|
|
|
static void rs_hangup(struct tty_struct *tty)
|
|
{
|
|
struct serial_state *info = tty->driver_data;
|
|
|
|
rs_flush_buffer(tty);
|
|
tty_port_hangup(&info->port);
|
|
}
|
|
|
|
static int activate(struct tty_port *port, struct tty_struct *tty)
|
|
{
|
|
struct serial_state *state = container_of(port, struct serial_state,
|
|
port);
|
|
unsigned long flags, page;
|
|
int retval = 0;
|
|
|
|
page = get_zeroed_page(GFP_KERNEL);
|
|
if (!page)
|
|
return -ENOMEM;
|
|
|
|
local_irq_save(flags);
|
|
|
|
if (state->xmit.buf)
|
|
free_page(page);
|
|
else
|
|
state->xmit.buf = (unsigned char *) page;
|
|
|
|
if (state->irq) {
|
|
retval = request_irq(state->irq, rs_interrupt_single, 0,
|
|
"simserial", state);
|
|
if (retval)
|
|
goto errout;
|
|
}
|
|
|
|
state->xmit.head = state->xmit.tail = 0;
|
|
errout:
|
|
local_irq_restore(flags);
|
|
return retval;
|
|
}
|
|
|
|
|
|
/*
|
|
* This routine is called whenever a serial port is opened. It
|
|
* enables interrupts for a serial port, linking in its async structure into
|
|
* the IRQ chain. It also performs the serial-specific
|
|
* initialization for the tty structure.
|
|
*/
|
|
static int rs_open(struct tty_struct *tty, struct file * filp)
|
|
{
|
|
struct serial_state *info = rs_table + tty->index;
|
|
struct tty_port *port = &info->port;
|
|
|
|
tty->driver_data = info;
|
|
port->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
|
|
|
|
/*
|
|
* figure out which console to use (should be one already)
|
|
*/
|
|
console = console_drivers;
|
|
while (console) {
|
|
if ((console->flags & CON_ENABLED) && console->write) break;
|
|
console = console->next;
|
|
}
|
|
|
|
return tty_port_open(port, tty, filp);
|
|
}
|
|
|
|
/*
|
|
* /proc fs routines....
|
|
*/
|
|
|
|
static int rs_proc_show(struct seq_file *m, void *v)
|
|
{
|
|
int i;
|
|
|
|
seq_printf(m, "simserinfo:1.0\n");
|
|
for (i = 0; i < NR_PORTS; i++)
|
|
seq_printf(m, "%d: uart:16550 port:3F8 irq:%d\n",
|
|
i, rs_table[i].irq);
|
|
return 0;
|
|
}
|
|
|
|
static int rs_proc_open(struct inode *inode, struct file *file)
|
|
{
|
|
return single_open(file, rs_proc_show, NULL);
|
|
}
|
|
|
|
static const struct file_operations rs_proc_fops = {
|
|
.owner = THIS_MODULE,
|
|
.open = rs_proc_open,
|
|
.read = seq_read,
|
|
.llseek = seq_lseek,
|
|
.release = single_release,
|
|
};
|
|
|
|
static const struct tty_operations hp_ops = {
|
|
.open = rs_open,
|
|
.close = rs_close,
|
|
.write = rs_write,
|
|
.put_char = rs_put_char,
|
|
.flush_chars = rs_flush_chars,
|
|
.write_room = rs_write_room,
|
|
.chars_in_buffer = rs_chars_in_buffer,
|
|
.flush_buffer = rs_flush_buffer,
|
|
.ioctl = rs_ioctl,
|
|
.throttle = rs_throttle,
|
|
.unthrottle = rs_unthrottle,
|
|
.send_xchar = rs_send_xchar,
|
|
.hangup = rs_hangup,
|
|
.proc_fops = &rs_proc_fops,
|
|
};
|
|
|
|
static const struct tty_port_operations hp_port_ops = {
|
|
.activate = activate,
|
|
.shutdown = shutdown,
|
|
};
|
|
|
|
static int __init simrs_init(void)
|
|
{
|
|
struct serial_state *state;
|
|
int retval;
|
|
|
|
if (!ia64_platform_is("hpsim"))
|
|
return -ENODEV;
|
|
|
|
hp_simserial_driver = alloc_tty_driver(NR_PORTS);
|
|
if (!hp_simserial_driver)
|
|
return -ENOMEM;
|
|
|
|
printk(KERN_INFO "SimSerial driver with no serial options enabled\n");
|
|
|
|
/* Initialize the tty_driver structure */
|
|
|
|
hp_simserial_driver->driver_name = "simserial";
|
|
hp_simserial_driver->name = "ttyS";
|
|
hp_simserial_driver->major = TTY_MAJOR;
|
|
hp_simserial_driver->minor_start = 64;
|
|
hp_simserial_driver->type = TTY_DRIVER_TYPE_SERIAL;
|
|
hp_simserial_driver->subtype = SERIAL_TYPE_NORMAL;
|
|
hp_simserial_driver->init_termios = tty_std_termios;
|
|
hp_simserial_driver->init_termios.c_cflag =
|
|
B9600 | CS8 | CREAD | HUPCL | CLOCAL;
|
|
hp_simserial_driver->flags = TTY_DRIVER_REAL_RAW;
|
|
tty_set_operations(hp_simserial_driver, &hp_ops);
|
|
|
|
state = rs_table;
|
|
tty_port_init(&state->port);
|
|
state->port.ops = &hp_port_ops;
|
|
state->port.close_delay = 0; /* XXX really 0? */
|
|
|
|
retval = hpsim_get_irq(KEYBOARD_INTR);
|
|
if (retval < 0) {
|
|
printk(KERN_ERR "%s: out of interrupt vectors!\n",
|
|
__func__);
|
|
goto err_free_tty;
|
|
}
|
|
|
|
state->irq = retval;
|
|
|
|
/* the port is imaginary */
|
|
printk(KERN_INFO "ttyS0 at 0x03f8 (irq = %d) is a 16550\n", state->irq);
|
|
|
|
tty_port_link_device(&state->port, hp_simserial_driver, 0);
|
|
retval = tty_register_driver(hp_simserial_driver);
|
|
if (retval) {
|
|
printk(KERN_ERR "Couldn't register simserial driver\n");
|
|
goto err_free_tty;
|
|
}
|
|
|
|
return 0;
|
|
err_free_tty:
|
|
put_tty_driver(hp_simserial_driver);
|
|
tty_port_destroy(&state->port);
|
|
return retval;
|
|
}
|
|
|
|
#ifndef MODULE
|
|
__initcall(simrs_init);
|
|
#endif
|