configs/stm32f769i-disco/src/stm32_bringup.c: Correct compile error found in build testing.

This commit is contained in:
Gregory Nutt 2019-07-28 12:33:17 -06:00
parent 07bdbe85fc
commit 43e832327c
2 changed files with 1 additions and 2 deletions

View File

@ -94,7 +94,7 @@ int stm32_ina219initialize(FAR const char *devpath)
/* Then register the sensor */
ret = ina219_register(devpath, i2c,0x40,100000,0x00);
ret = ina219_register(devpath, i2c, 0x40, 100000, 0x00);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: Error registering hih6130\n");

View File

@ -46,7 +46,6 @@
#include <debug.h>
#include <errno.h>
#include "stm32_ccm.h"
#include "stm32f769i-disco.h"
/****************************************************************************