mirror of
https://github.com/armbian/linux.git
synced 2026-01-06 10:13:00 -08:00
Change-Id: I754250669891307b0deab2bdab1bd01512713f79 Signed-off-by: Tao Huang <huangtao@rock-chips.com>
13 lines
294 B
C
13 lines
294 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __GPIO_PWM_H__
|
|
#define __GPIO_PWM_H__
|
|
|
|
struct gpio_wave_platform_data {
|
|
unsigned int gpio; //the pin use to exert spuare wave
|
|
int Htime; //spuare wave Hight width
|
|
int Ltime; //spuare wave Low width
|
|
int Dvalue; //gpio default value
|
|
};
|
|
|
|
#endif
|