mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
8d6c16dd72
This exported element needs to be accesible to all drivers using configfs within IIO. Previously it was in the sw_trig.h file which only convered one such usecase. This also fixes a sparse warning as it is now in a header that makes sense to include from industrialio-configfs.c Signed-off-by: Jonathan Cameron < jic23@kernel.org>
15 lines
405 B
C
15 lines
405 B
C
/*
|
|
* Industrial I/O configfs support
|
|
*
|
|
* Copyright (c) 2015 Intel Corporation
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
* the Free Software Foundation.
|
|
*/
|
|
#ifndef __IIO_CONFIGFS
|
|
#define __IIO_CONFIGFS
|
|
|
|
extern struct configfs_subsystem iio_configfs_subsys;
|
|
|
|
#endif /* __IIO_CONFIGFS */
|