当前位置:  技术问答>linux和unix

为2410编译字符驱动提示函数未定义的问题

    来源: 互联网  发布时间:2016-02-15

    本文导语:  在Linux2.6.8内核上交叉编译S3C2410的字符设备驱动,内核源码树我已经编译过了,为什么提示这如下函数未定义呢? s3c2410_gpio_cfgpin(unsigned int pin, unsigned int function); s3c2410_gpio_pullup(unsigned int pin, unsigned int to); s3c2410...

在Linux2.6.8内核上交叉编译S3C2410的字符设备驱动,内核源码树我已经编译过了,为什么提示这如下函数未定义呢?
s3c2410_gpio_cfgpin(unsigned int pin, unsigned int function);
s3c2410_gpio_pullup(unsigned int pin, unsigned int to);
s3c2410_gpio_setpin(unsigned int pin, unsigned int to);

|
/* linux/include/asm-arm/arch-s3c2410/hardware.h
 *
 * (c) 2003 Simtec Electronics
 *  Ben Dooks 
 *
 * S3C2410 - hardware
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * Changelog:
 *  21-May-2003 BJD  Created file
 *  06-Jun-2003 BJD  Added CPU frequency settings
 *  03-Sep-2003 BJD  Linux v2.6 support
 *  12-Mar-2004 BJD  Fixed include protection, fixed type of clock vars
 *  14-Sep-2004 BJD  Added misccr and getpin to gpio
 *  01-Oct-2004 BJD  Added the new gpio functions
 *  16-Oct-2004 BJD  Removed the clock variables
 *  15-Jan-2006 LCVR Added s3c2400_gpio_getirq()
*/

#ifndef __ASM_ARCH_HARDWARE_H
#define __ASM_ARCH_HARDWARE_H

#ifndef __ASSEMBLY__

/* external functions for GPIO support
 *
 * These allow various different clients to access the same GPIO
 * registers without conflicting. If your driver only owns the entire
 * GPIO register, then it is safe to ioremap/__raw_{read|write} to it.
*/

/* s3c2410_gpio_cfgpin
 *
 * set the configuration of the given pin to the value passed.
 *
 * eg:
 *    s3c2410_gpio_cfgpin(S3C2410_GPA0, S3C2410_GPA0_ADDR0);
 *    s3c2410_gpio_cfgpin(S3C2410_GPE8, S3C2410_GPE8_SDDAT1);
*/

extern void s3c2410_gpio_cfgpin(unsigned int pin, unsigned int function);

extern unsigned int s3c2410_gpio_getcfg(unsigned int pin);

/* s3c2410_gpio_getirq
 *
 * turn the given pin number into the corresponding IRQ number
 *
 * returns:
 * =0 = interrupt number for the pin
*/

extern int s3c2410_gpio_getirq(unsigned int pin);

#ifdef CONFIG_CPU_S3C2400

extern int s3c2400_gpio_getirq(unsigned int pin);

#endif /* CONFIG_CPU_S3C2400 */

/* s3c2410_gpio_irqfilter
 *
 * set the irq filtering on the given pin
 *
 * on = 0 => disable filtering
 *      1 => enable filtering
 *
 * config = S3C2410_EINTFLT_PCLK or S3C2410_EINTFLT_EXTCLK orred with
 *          width of filter (0 through 63)
 *
 *
*/

extern int s3c2410_gpio_irqfilter(unsigned int pin, unsigned int on,
  unsigned int config);

/* s3c2410_gpio_pullup
 *
 * configure the pull-up control on the given pin
 *
 * to = 1 => disable the pull-up
 *      0 => enable the pull-up
 *
 * eg;
 *
 *   s3c2410_gpio_pullup(S3C2410_GPB0, 0);
 *   s3c2410_gpio_pullup(S3C2410_GPE8, 0);
*/

extern void s3c2410_gpio_pullup(unsigned int pin, unsigned int to);

extern void s3c2410_gpio_setpin(unsigned int pin, unsigned int to);

extern unsigned int s3c2410_gpio_getpin(unsigned int pin);

extern unsigned int s3c2410_modify_misccr(unsigned int clr, unsigned int chg);

#ifdef CONFIG_CPU_S3C2440

extern int s3c2440_set_dsc(unsigned int pin, unsigned int value);

#endif /* CONFIG_CPU_S3C2440 */


#endif /* __ASSEMBLY__ */

#include 
#include 

/* machine specific hardware definitions should go after this */

/* currently here until moved into config (todo) */
#define CONFIG_NO_MULTIWORD_IO

#endif /* __ASM_ARCH_HARDWARE_H */

    
 
 

您可能感兴趣的文章:

  • gcc编译的函数可不可以确定编译后的函数在文件中的顺序
  • static函数被编译成内联函数(inline)
  • 请问在REDHAT下使用gcc编译器用的是什么函数库,函数库的资料应该上哪儿找?
  • 请问:我要链接哪些oci库才能成功编译.我在编译的时候老是报OCI函数找不到.
  • 操作系统 iis7站长之家
  • g++能调用gcc编译出来的库中的函数吗?
  • linux下,编译时,log函数总是不认,这是为什么?
  • 如何导出-g编译出的执行程序的函数信息?
  • minGW编译带fork函数的问题?
  • 菜鸟问题, GCC 编译出的目标码中函数前面有没有下划线呀?
  • 不重新编译内核能修改内核函数吗?
  • 请问在linux下,如何编译些API函数
  • 编译socket程序需要加什么库函数?
  • 如何在程序中动态的加载并且调用另一个编译好的函数?
  • 编译缺少函数原型,
  • 共享库如何在编译的时候确定哪些函数没有实现?
  • linux下c++调用数学函数后,编译正确但不出结果
  • 我用的是atmel一个成熟的开发板。有一个触摸屏驱动程序,以<M>的方式编译为模块,编译时提示某个外部函数没有定义,但如果以<*>的方式编译进内核,则不会出错。请教下可能是什么原因?
  • 如何编译含有静态成员函数的C++文件?
  • 编译arm版prelink出错,elf_与gelf_的库函数全部没有定义
  • jbuilder5 编译器,为什么光标总停在实际上所指字符的前面两个字符前,在哪里改变一下设置,谢谢
  • 新手求助,编译时说不能解析字符是怎么回事?
  • 在编译字符驱动程序时,为何总是找不到头文件!急......
  • 关于在linux字符界面的编译调试
  • Linux下的net-snmp源码编译的snmpd代理在取进程名的时候只能取到前15个字符,有没有配置可以取全进程名?
  • 编译最简单字符型驱动的警告信息
  • 为什么gets()在gcc编译时会报warning,且经socket发往server端只显示一个字符?
  • Think in java 源程序编译,满脸的畸形字符,最后出现一百个错误!!!!!
  • 另一个Think in java书中源程序编译,满脸的畸形字符,最后出现一百个错误!!!!!
  • 编译uclinux字符驱动出一堆错误.......
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • linux/centos源码安装nginx编译配置选项参数介绍
  • 请教:JSP编译器编译成字节码,跟别的编译器编译出来的有什么不同呢?
  • CentOS 6内核升级:下载编译启用新内核版本详细过程
  • 编译GCC时能不能只编译C/C++的编译器?
  • 高速的网络抓包库PF_ring介绍及编译安装
  • 关于arm交叉编译器4.3.3编译程序报错,但是3.4.5却能编译通过的问题
  • JB下,我的程序编译得好慢!请问用什么方法编译才可以快一点?或编译顺序改变一下?
  • 请问gdb是不是只能调试gcc编译的程序,在unix下用其它编译器编译的程序是不是不一定能用gdb调试的?
  • 用JCreator写了一个小程序,有十几个class,当修改某个文件重新编译,javac并没有编译修改的文件,请问要如何做javac才会重新编译所有的
  • 问:关于gcc编译器和g++编译器
  • 嵌入式linux开发:一段代码在windows平台用VC编译运行正常,在linux平台用gcc编译运行正常,但是用arm-linux-gcc编译在嵌入式板子上运行就不正常.
  • 在cygwin编译驱动程序要不要交叉编译?
  • 关于如何把编译进内核的编译成模块
  • C编译器 c++编译器 wieldylcc
  • Linux下gcc编译时,如何以静态链接的形式编译?
  • PROC开发时 //注释编译不通过 如何设置使用cpp编译。
  • 编译失败后如何再继续编译
  • 编译qt-x11,最后编译生成可执行文件时候,make出错
  • 如何查看已编译安装软件的编译命令行
  • 请问哪里有反编译.class文件的反编译器?
  • 用Jdk编译时出现提示要加 -deprecation 再编译,请教??


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3