proc.c (8be98d2f2a0a262f8bf8a0bc1fdf522b3c7aab17) | proc.c (df0e68c1e9945e2ee86d266ce45597bbd8299b06) |
---|---|
1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * /proc interface for comedi 4 * 5 * COMEDI - Linux Control and Measurement Device Interface 6 * Copyright (C) 1998 David A. Schleef <ds@schleef.org> 7 */ 8 9/* 10 * This is some serious bloatware. 11 * 12 * Taken from Dave A.'s PCL-711 driver, 'cuz I thought it 13 * was cool. 14 */ 15 | 1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * /proc interface for comedi 4 * 5 * COMEDI - Linux Control and Measurement Device Interface 6 * Copyright (C) 1998 David A. Schleef <ds@schleef.org> 7 */ 8 9/* 10 * This is some serious bloatware. 11 * 12 * Taken from Dave A.'s PCL-711 driver, 'cuz I thought it 13 * was cool. 14 */ 15 |
16#include "comedidev.h" | 16#include <linux/comedi/comedidev.h> |
17#include "comedi_internal.h" 18#include <linux/proc_fs.h> 19#include <linux/seq_file.h> 20 21static int comedi_read(struct seq_file *m, void *v) 22{ 23 int i; 24 int devices_q = 0; --- 50 unchanged lines hidden --- | 17#include "comedi_internal.h" 18#include <linux/proc_fs.h> 19#include <linux/seq_file.h> 20 21static int comedi_read(struct seq_file *m, void *v) 22{ 23 int i; 24 int devices_q = 0; --- 50 unchanged lines hidden --- |