mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-09-03 02:16:09 +02:00

The comedi code came into the kernel back in 2008, but traces its lifetime to much much earlier. It's been polished and buffed and there's really nothing preventing it from being part of the "real" portion of the kernel. So move it to drivers/comedi/ as it belongs there. Many thanks to the hundreds of developers who did the work to make this happen. Cc: Ian Abbott <abbotti@mev.co.uk> Cc: H Hartley Sweeten <hsweeten@visionengravers.com> Link: https://lore.kernel.org/r/YHauop4u3sP6lz8j@kroah.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11 lines
246 B
C
11 lines
246 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ADDI_WATCHDOG_H
|
|
#define _ADDI_WATCHDOG_H
|
|
|
|
struct comedi_subdevice;
|
|
|
|
void addi_watchdog_reset(unsigned long iobase);
|
|
int addi_watchdog_init(struct comedi_subdevice *s, unsigned long iobase);
|
|
|
|
#endif
|