【原创】关于s3c24XX系列2.6.35.7内核移植挂在s3c_gpio_setpull的解决方法

google到一篇文章是说将s3c_gpio_setpull函数置空,直接返回EINVAL

 

我觉得这样太粗暴了,于是研究了上下文代码,发现其实是挂在s3c_gpio_do_setpull函数中,

 

也就是这句话里:

    return (chip->config->set_pull)(chip, off, pull);

 

其中参数chip是在gpiolib.c中定义的,原型是s3c24xx_gpios这样一个全局的结构体。

 

在结构体赋值的分析中,发现chip->config->set_pull也有可能为NULL,

 

OK,解决方法出现了,

 

只要修改为:

 

static inline int s3c_gpio_do_setpull(struct s3c_gpio_chip *chip,
                      unsigned int off, s3c_gpio_pull_t pull)
{

    if(NULL != chip->config->set_pull)
        return (chip->config->set_pull)(chip, off, pull);

    else

        return EINVAL;

}

 

内核运行正常。。。

你可能感兴趣的:(c,struct,Google,null)