// SPDX-License-Identifier: GPL-2.0+ /* * /proc interface for comedi * * COMEDI - Linux Control and Measurement Device Interface * Copyright (C) 1998 David A. Schleef <[email protected]> */ /* * This is some serious bloatware. * * Taken from Dave A.'s PCL-711 driver, 'cuz I thought it * was cool. */ #include <linux/comedi/comedidev.h> #include "comedi_internal.h" #include <linux/proc_fs.h> #include <linux/seq_file.h> static int comedi_read(struct seq_file *m, void *v) { … } void __init comedi_proc_init(void) { … } void comedi_proc_cleanup(void) { … }