¿Macro de registro de i2c no encontrada?
Estoy trabajando en el controlador I2C en un raspPi:
/* register I2C device static */
static const struct i2c_board_info rasp_i2c_devices[] = {
{ "mbed", mbedID },
};
/* in the init function of my module */
i2c_register_board_info(0,rasp_i2c_devices,ARRAY_SIZE(rasp_i2c_devices));
Cuando compilo me sale el siguiente error:
make[1]: Entering directory `/home/zilleplus/rasp/linux'
Building modules, stage 2.
MODPOST 1 modules
WARNING: "i2c_register_board_info" [/home/zilleplus/LedCube/Module/I2C/I2Crasp.ko] undefined!
-> kernel compilado cruzado con make -j4 ARCH = arm CROSS_COMPILE = $ {PITOOLSBIN} CONFIG_DEBUG_SECTION_MISMATCH = y
¿A dónde voy desde aquí? incluí#include <linux/i2c.h>
Realmente no entiendo por qué me sale este error.
Pastebin con un pequeño módulo que demuestra el problema:http://pastebin.com/ch58BUZj
en respuesta al comentario de mi .config:
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
CONFIG_I2C_CHARDEV=y
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=m