s626.c (8be98d2f2a0a262f8bf8a0bc1fdf522b3c7aab17) s626.c (df0e68c1e9945e2ee86d266ce45597bbd8299b06)
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * comedi/drivers/s626.c
4 * Sensoray s626 Comedi driver
5 *
6 * COMEDI - Linux Control and Measurement Device Interface
7 * Copyright (C) 2000 David A. Schleef <ds@schleef.org>
8 *

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

50 * comedi_do_insn(cf,&insn); //executing configuration
51 */
52
53#include <linux/module.h>
54#include <linux/delay.h>
55#include <linux/interrupt.h>
56#include <linux/kernel.h>
57#include <linux/types.h>
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * comedi/drivers/s626.c
4 * Sensoray s626 Comedi driver
5 *
6 * COMEDI - Linux Control and Measurement Device Interface
7 * Copyright (C) 2000 David A. Schleef <ds@schleef.org>
8 *

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

50 * comedi_do_insn(cf,&insn); //executing configuration
51 */
52
53#include <linux/module.h>
54#include <linux/delay.h>
55#include <linux/interrupt.h>
56#include <linux/kernel.h>
57#include <linux/types.h>
58#include <linux/comedi/comedi_pci.h>
58
59
59#include "../comedi_pci.h"
60
61#include "s626.h"
62
63struct s626_buffer_dma {
64 dma_addr_t physical_base;
65 void *logical_base;
66};
67
68/**

--- 2537 unchanged lines hidden ---
60#include "s626.h"
61
62struct s626_buffer_dma {
63 dma_addr_t physical_base;
64 void *logical_base;
65};
66
67/**

--- 2537 unchanged lines hidden ---