A macro de registro do i2c não foi encontrada?

Estou trabalhando no driver I2C em uma 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));

Quando eu compilar, recebo o seguinte erro:

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 com make -j4 ARCH = arm CROSS_COMPILE = $ {PITOOLSBIN} CONFIG_DEBUG_SECTION_MISMATCH = y

Para onde eu vou daqui? eu incluí#include <linux/i2c.h> Eu realmente não entendo por que recebo esse erro.

pastebin com pequeno módulo demonstrando problema:http://pastebin.com/ch58BUZj

em resposta ao comentário do meu .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

questionAnswers(0)

yourAnswerToTheQuestion