1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 07:21:18 +01:00

cpu/cc2538: remove useless periph file guard

This commit is contained in:
Alexandre Abadie 2018-04-14 23:03:54 +02:00
parent 6089910e6e
commit ebbb071e0a

View File

@ -36,9 +36,6 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
/* guard this file in case no I2C device is defined */
#if I2C_NUMOF
#ifndef I2C_0_SCL_PIN
#define I2C_0_SCL_PIN i2c_config[I2C_0].scl_pin
#endif
@ -666,5 +663,3 @@ void i2c_poweroff(i2c_t dev)
SYS_CTRL_DCGCI2C &= ~1; /**< Disable the I2C0 clock. */
}
}
#endif /* I2C_NUMOF */