blob: 34d59bfdce2d2b12b0f6d7b61c601bfc0e2cb518 [file] [log] [blame]
Fabrice Gasnierb01ced22017-08-28 12:04:11 +02001/*
2 * Copyright (C) STMicroelectronics 2017
3 *
4 * Author: Fabrice Gasnier <fabrice.gasnier@st.com>
5 *
6 * License terms: GNU General Public License (GPL), version 2
7 */
8
9#ifndef _STM32_LPTIM_TRIGGER_H_
10#define _STM32_LPTIM_TRIGGER_H_
11
12#include <linux/iio/iio.h>
13#include <linux/iio/trigger.h>
14
15#define LPTIM1_OUT "lptim1_out"
16#define LPTIM2_OUT "lptim2_out"
17#define LPTIM3_OUT "lptim3_out"
18
19#if IS_ENABLED(CONFIG_IIO_STM32_LPTIMER_TRIGGER)
20bool is_stm32_lptim_trigger(struct iio_trigger *trig);
21#else
22static inline bool is_stm32_lptim_trigger(struct iio_trigger *trig)
23{
24 return false;
25}
26#endif
27#endif