drivers: sensor: si7006: fix redundant include in si7006

Remove redundant include of `zephyr/logging/log.h` in si7006.c.

Signed-off-by: Margherita Milani <margherita.milani@amarulasolutions.com>
This commit is contained in:
Margherita Milani 2024-05-28 16:52:33 +02:00 committed by Henrik Brix Andersen
commit 885d271e57

View file

@ -13,12 +13,11 @@
#include <string.h>
#include <zephyr/sys/byteorder.h>
#include <zephyr/sys/__assert.h>
#include <zephyr/logging/log.h>
#include <zephyr/drivers/i2c.h>
#include <zephyr/logging/log.h>
#include <stdio.h>
#include <stdlib.h>
#include "si7006.h"
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(si7006, CONFIG_SENSOR_LOG_LEVEL);