From 00985dbafbfc4bbe2e61ca0ebb04cc5ae8ed72cb Mon Sep 17 00:00:00 2001 From: xwbmcu Date: Mon, 15 May 2023 09:22:05 +0800 Subject: [PATCH] fix:void is added to the function argument Signed-off-by: xwbmcu --- framework/model/sensor/driver/hall/sensor_hall_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/model/sensor/driver/hall/sensor_hall_driver.c b/framework/model/sensor/driver/hall/sensor_hall_driver.c index d5673d567..e5134fca8 100644 --- a/framework/model/sensor/driver/hall/sensor_hall_driver.c +++ b/framework/model/sensor/driver/hall/sensor_hall_driver.c @@ -40,7 +40,7 @@ int32_t HallRegisterChipOps(const struct HallOpsCall *ops) return HDF_SUCCESS; } -void ReadGpioData() +void ReadGpioData(void) { int32_t ret; uint16_t tmp; -- Gitee