blob: ed78fe370b791624d9c5793ea0beba5b7e5ba83b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* omap-pwm.h
*
* Copyright (c) 2012 NeilBrown <neilb@suse.de>
*
* 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.
*
* Set the timer id to use for a PWM
*/
#ifndef _OMAP_PWM_H_
#define _OMAP_PWM_H_
struct omap_pwm_pdata {
int timer_id;
int (*mux_init)(void);
};
#endif /* _OMAP_PWM_H_ */
|