mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
global: Migrate CONFIG_IMX6_PWM_PER_CLK to CFG
Perform a simple rename of CONFIG_IMX6_PWM_PER_CLK to CFG_IMX6_PWM_PER_CLK Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
cdbf8459d0
commit
e6014294dd
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ int pwm_imx_get_parms(int period_ns, int duty_ns, unsigned long *period_c,
|
|||
* value here as a define. Replace it when we have the clock
|
||||
* framework.
|
||||
*/
|
||||
c = CONFIG_IMX6_PWM_PER_CLK;
|
||||
c = CFG_IMX6_PWM_PER_CLK;
|
||||
c = c * period_ns;
|
||||
do_div(c, 1000000000);
|
||||
*period_c = c;
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(4, 6)
|
||||
#endif
|
||||
|
||||
#define CONFIG_IMX6_PWM_PER_CLK 66000000
|
||||
#define CFG_IMX6_PWM_PER_CLK 66000000
|
||||
|
||||
#ifdef CONFIG_ENV_IS_IN_MMC
|
||||
/* 0=user, 1=boot0, 2=boot1, * 4..7=general0..3. */
|
||||
|
|
Loading…
Reference in a new issue