pwm: ftm: Correctly track usage count

No matter how many times the FTM PWM is enabled, the use_count will
always be one.

Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
Xiubo Li 2014-10-15 13:21:33 +08:00 коммит произвёл Thierry Reding
Родитель 06e4cb6b1d
Коммит 8e6e765102
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -299,7 +299,7 @@ static int fsl_counter_clock_enable(struct fsl_pwm_chip *fpc)
{
int ret;
if (fpc->use_count != 0)
if (fpc->use_count++ != 0)
return 0;
/* select counter clock source */
@ -316,8 +316,6 @@ static int fsl_counter_clock_enable(struct fsl_pwm_chip *fpc)
return ret;
}
fpc->use_count++;
return 0;
}