Commit 3bbb49aa authored by Jonathan Cameron's avatar Jonathan Cameron Committed by Greg Kroah-Hartman
Browse files

staging:iio: Fix IIO_EVENT_ATTR initialization of list head

parent 751a3700
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -293,10 +293,7 @@ struct iio_const_attr {
 * @_handler: handler function to be called
 **/
#define IIO_EVENT_ATTR(_name, _show, _store, _mask, _handler)		\
	static struct iio_event_handler_list				\
	iio_event_##_name = {						\
		.handler = _handler,					\
	};								\
	IIO_EVENT_SH(_name, _handler);					\
	static struct							\
	iio_event_attr							\
	iio_event_attr_##_name						\
@@ -324,6 +321,7 @@ struct iio_const_attr {
#define IIO_EVENT_CODE_GYRO_BASE	400
#define IIO_EVENT_CODE_ADC_BASE		500
#define IIO_EVENT_CODE_MISC_BASE	600
#define IIO_EVENT_CODE_LIGHT_BASE	700

#define IIO_EVENT_CODE_DEVICE_SPECIFIC	1000