daisy.c (e98bdb3059cbf2b1cd4261e126b08429f64466c3) | daisy.c (174cd4b1e5fbd0d74c68cf3a74f5bd4923485512) |
---|---|
1/* 2 * IEEE 1284.3 Parallel port daisy chain and multiplexor code 3 * 4 * Copyright (C) 1999, 2000 Tim Waugh <tim@cyberelk.demon.co.uk> 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version --- 9 unchanged lines hidden (view full) --- 18 * the GNU Free Documentation License, Version 1.1 or any later version 19 * published by the Free Software Foundation. 20 */ 21 22#include <linux/module.h> 23#include <linux/parport.h> 24#include <linux/delay.h> 25#include <linux/slab.h> | 1/* 2 * IEEE 1284.3 Parallel port daisy chain and multiplexor code 3 * 4 * Copyright (C) 1999, 2000 Tim Waugh <tim@cyberelk.demon.co.uk> 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version --- 9 unchanged lines hidden (view full) --- 18 * the GNU Free Documentation License, Version 1.1 or any later version 19 * published by the Free Software Foundation. 20 */ 21 22#include <linux/module.h> 23#include <linux/parport.h> 24#include <linux/delay.h> 25#include <linux/slab.h> |
26#include <linux/sched.h> | 26#include <linux/sched/signal.h> |
27 28#include <asm/current.h> 29#include <linux/uaccess.h> 30 31#undef DEBUG 32 33#ifdef DEBUG 34#define DPRINTK(stuff...) printk(stuff) --- 448 unchanged lines hidden --- | 27 28#include <asm/current.h> 29#include <linux/uaccess.h> 30 31#undef DEBUG 32 33#ifdef DEBUG 34#define DPRINTK(stuff...) printk(stuff) --- 448 unchanged lines hidden --- |