.........................................................................................................................................................................................................
 
Building modules, stage 2.
  MODPOST 7 modules
WARNING: "wl12xx_get_platform_data" [/home/fine-work/linux_debug_pro/driver/fsl/flairmicro/compat_wl18xx/drivers/net/wireless/ti/wlcore/wlcore_sdio.ko] undefined!
WARNING: "simple_open" [/home/fine-work/linux_debug_pro/driver/fsl/flairmicro/compat_wl18xx/drivers/net/wireless/ti/wlcore/wlcore.ko] undefined!
WARNING: "simple_open" [/home/fine-work/linux_debug_pro/driver/fsl/flairmicro/compat_wl18xx/drivers/net/wireless/ti/wl18xx/wl18xx.ko] undefined!
WARNING: "simple_open" [/home/fine-work/linux_debug_pro/driver/fsl/flairmicro/compat_wl18xx/drivers/net/wireless/ti/wl12xx/wl12xx.ko] undefined!
  CC      /home/fine-work/linux_debug_pro/driver/fsl/flairmicro/compat_wl18xx/compat/compat.mod.o
  LD [M]  /home/fine-work/linux_debug_pro/driver/fsl/flairmicro/compat_wl18xx/compat/compat.ko
...........................................................................................................................................................................................................
 
一.WARNING: "simple_open"
 
1. 把 compat-3.4.c compat-3.4.h 这两个文件放到wlcore 文件夹下面
 
2. 在wlcore文件夹下面。修改debugfs.h 在  #include "wlcore.h" 下面添加#include "compat-3.4.h"
 
3. 修改wlcore文件夹下面的makefile  在里面
 
wlcore-objs = main.o cmd.o io.o event.o tx.o rx.o ps.o acx.o \
  boot.o init.o debugfs.o scan.o 
 
后面添加  compat-3.4.o 
 
 wlcore-objs = main.o cmd.o io.o event.o tx.o rx.o ps.o acx.o \
  boot.o init.o debugfs.o scan.o  compat-3.4.o 
 
二:WARNING: "wl12xx_get_platform_data" 
 
定义 CONFIG_WL12XX_PLATFORM_DATA
 
 
 
 

wl18xx编译的时候出现WARNING: "simple_open" WARNING: "wl12xx_get_platform_data"的更多相关文章

  1. 解决Undefined symbols for architecture x86_64: 报错 和 ld: warning: ld: warning: ignoring file警告

    出现这种错误的情况: 用iphone5模拟器编译程序正常, 用iphone5s以上的模拟器编译出现Undefined symbols for architecture x86_64: 报错 和 ld: ...

  2. Starting php-fpm [18-Jun-2019 12:56:59] NOTICE: PHP message: PHP Warning: Version warning提示报错解决

    php-fpm在命令行重启时出现如下提示信息在终端上,虽然不影响使用,但是不够干净利落,参考了一篇国外博客得以解决,参考链接:https://community.centminmod.com/thre ...

  3. 解决编译warning:warning: ‘MeteringUnit::voltage_gain_’ will be initialized after [-Wreorder]

    问题: 环境:ubuntu 12.04,g++版本4.6.3,编译目标文件时出现warnings: u1204@u1204-zhw:~/hwsvn/2sw/4prj_mips/UCP_rt5350/s ...

  4. vue 编译大量空格警告问题总结 warning: Replace `↹↹` with `··`

    1.vue开发中发现最后越来越多的编译警告,如 warning: Replace `↹↹` with `··` (prettier/prettier) at src/views/shebei/shou ...

  5. Android Studio3.1.2编译时Java Compiler出错:Warning: Failed to parse host proxy3.bj...

    删除gradle.properties中的代理设置... #移除下面配置systemProp.http.proxyHost=proxy3.bj.petrochina systemProp.http.p ...

  6. #pragma warning (default : n)

    参考链接:http://www.cnblogs.com/JCSU/articles/1996483.html 在VC2013中编译以下win32 C++ 控制台程序,会产生2个告警warnings # ...

  7. [WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored (webxml attribute is missing from war task, or ignoreWebxml attribute is specified as 'true')

    WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored (webxml attribu ...

  8. android -------- 混淆打包报错(warning - InnerClass annotations are missing corresponding EnclosingMember annotations)

    最近做Android混淆打包遇到一些问题,Android Sdutio 3.1 版本打包的 错误如下: Android studio warning - InnerClass annotations ...

  9. 关于warning: Clock skew detected. Your build may be incomplete. 的解决方法

    今天发现电脑的系统时间不对,因此将时钟进行了改动,回头编译Linux kernel的时候,提演示样例如以下的warning: warning:  Clock skew detected.  Your ...

随机推荐

  1. PAT 团体程序设计天梯赛-练习集 L1-008. 求整数段和

    给定两个整数A和B,输出从A到B的所有整数以及这些数的和. 输入格式: 输入在一行中给出2个整数A和B,其中-100<=A<=B<=100,其间以空格分隔. 输出格式: 首先顺序输出 ...

  2. PAT 团体程序设计天梯赛-练习集 L1-002. 打印沙漏

    本题要求你写个程序把给定的符号打印成沙漏的形状.例如给定17个“*”,要求按下列格式打印 ***** *** * *** ***** 所谓“沙漏形状”,是指每行输出奇数个符号:各行符号中心对齐:相邻两 ...

  3. 一行一行分析JQ源码学习笔记-04

    jquery添加方法和属性 jquery.fn=jquery.prototype ={ jquery版本 } construtor  指向修正 js源码中 fun  aaa(){} 会自动生成一句   ...

  4. Java JVM 多态(动态绑定)

    Java JVM 多态(动态绑定) @author ixenos 摘要:绑定.动态绑定实现多态.多态的缺陷.纯继承与扩展接口.向下转型与RTTI 绑定 将一个方法的调用和一个方法的主体关联起来,称作( ...

  5. C# Monads的实现(二)

    再谈continuation monad 上一篇中我们已经介绍了continuation monad,但是这个monad与Identity,Maybe,IEnumerable monads稍微难于理解 ...

  6. js中两个感叹号的原理与用法分析(转载记录没找到原帖)

    var foo; alert(!foo);//undifined情况下,一个感叹号返回的是true; alert(!goo);//null情况下,一个感叹号返回的也是true; var o={flag ...

  7. Oracle 正则 一行转多行

    , LEVEL, 'i') AS STR,bjdm FROM valueWeekInfo CONNECT ; 可以将 bjdm 换成 '01,02,03,04' , valueWeekInfo 换成d ...

  8. jmeter3 测试soap协议-webservice接口

    1.新建一个线程组 2.在线程组下新增,SOAP请求 3.设置soap请求,然后就可以测试了

  9. 项目管理实践【四】Bug跟踪管理【Bug Trace and Management】

    首先,向大家说一声抱歉,这篇文章耽误了这么久才和大家见面.至于Bug的跟踪和管理的必要性和好处,我就不在这里说了,下面介绍几款Bug跟踪和管理的软件. 一.BugNET BugNET是一个非常优秀的开 ...

  10. 数据查找之80-20原则的JavaScript代码实现

    作为前端开发人员,无论在工作还是找工作(笔试/面试),或多或少会涉及一些数据结构的知识. 数据结构即计算机存储和组织数据的方式. 常用的结构:数组.栈.队列.链表.树.图.堆和散列表 关于数据,我们常 ...