treewide: use full path to pwm.h header

The build infrastructure should not be adding the drivers subdirectory
to the include path.  Fix the legacy uses that depended on that
addition.

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
This commit is contained in:
Peter Bigot 2020-01-25 05:35:01 -06:00 committed by Carles Cufí
parent e423639c41
commit 12e30f16c9
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
#include <logging/log.h>
LOG_MODULE_REGISTER(pwm_mchp_xec, CONFIG_PWM_LOG_LEVEL);
#include <pwm.h>
#include <drivers/pwm.h>
#include <soc.h>
#include <errno.h>

View file

@ -5,7 +5,7 @@
*/
#include <errno.h>
#include <pwm.h>
#include <drivers/pwm.h>
#include <soc.h>
#include <fsl_pwm.h>
#include <fsl_clock.h>