mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 14:05:39 +00:00
df0e68c1e9
Move the main COMEDI driver headers out of "drivers/comedi/" into new directory "include/linux/comedi/". These are "comedidev.h", "comedilib.h", "comedi_pci.h", "comedi_pcmcia.h", and "comedi_usb.h". Additionally, move the user-space API header "comedi.h" into "include/uapi/linux/" and add "WITH Linux-syscall-note" to its SPDX-License-Identifier. Update the "COMEDI DRIVERS" section of the MAINTAINERS file to account for these changes. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Link: https://lore.kernel.org/r/20211117120604.117740-2-abbotti@mev.co.uk Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
49 lines
1.6 KiB
C
49 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* comedi_pcmcia.h
|
|
* header file for Comedi PCMCIA drivers
|
|
*
|
|
* COMEDI - Linux Control and Measurement Device Interface
|
|
* Copyright (C) 1997-2000 David A. Schleef <ds@schleef.org>
|
|
*/
|
|
|
|
#ifndef _COMEDI_PCMCIA_H
|
|
#define _COMEDI_PCMCIA_H
|
|
|
|
#include <pcmcia/cistpl.h>
|
|
#include <pcmcia/ds.h>
|
|
#include <linux/comedi/comedidev.h>
|
|
|
|
struct pcmcia_device *comedi_to_pcmcia_dev(struct comedi_device *dev);
|
|
|
|
int comedi_pcmcia_enable(struct comedi_device *dev,
|
|
int (*conf_check)(struct pcmcia_device *p_dev,
|
|
void *priv_data));
|
|
void comedi_pcmcia_disable(struct comedi_device *dev);
|
|
|
|
int comedi_pcmcia_auto_config(struct pcmcia_device *link,
|
|
struct comedi_driver *driver);
|
|
void comedi_pcmcia_auto_unconfig(struct pcmcia_device *link);
|
|
|
|
int comedi_pcmcia_driver_register(struct comedi_driver *comedi_driver,
|
|
struct pcmcia_driver *pcmcia_driver);
|
|
void comedi_pcmcia_driver_unregister(struct comedi_driver *comedi_driver,
|
|
struct pcmcia_driver *pcmcia_driver);
|
|
|
|
/**
|
|
* module_comedi_pcmcia_driver() - Helper macro for registering a comedi
|
|
* PCMCIA driver
|
|
* @__comedi_driver: comedi_driver struct
|
|
* @__pcmcia_driver: pcmcia_driver struct
|
|
*
|
|
* Helper macro for comedi PCMCIA drivers which do not do anything special
|
|
* in module init/exit. This eliminates a lot of boilerplate. Each
|
|
* module may only use this macro once, and calling it replaces
|
|
* module_init() and module_exit()
|
|
*/
|
|
#define module_comedi_pcmcia_driver(__comedi_driver, __pcmcia_driver) \
|
|
module_driver(__comedi_driver, comedi_pcmcia_driver_register, \
|
|
comedi_pcmcia_driver_unregister, &(__pcmcia_driver))
|
|
|
|
#endif /* _COMEDI_PCMCIA_H */
|