.........................................................................................................................................................................................................
 
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. 实现自动备份MySQL数据库

    #!/bin/bash base="/zsjdata/mysql/data" date=$(date +%Y%m%d) hour=$(date +%H) time=$(date + ...

  2. The most orzed and orzing man

    The most orzed and orzing man 题目链接:http://acm.xidian.edu.cn/problem.php?id=1184 Sprague-Grundy定理:htt ...

  3. 用block解决nstimer循环引用

    大多数开发者可能都会这样来实现定时器.创建定时器的时候,由于目标对象是self,所以要保留此实例.然而,因为定时器是用实例变量存放的,所以实例也保留了定时器,这就造成了循环引用.除非调用stop方法, ...

  4. Struts文件上传

    首先要加入上传文件需要的jar文件 commons-fileupload-1.2.1.jar commomons-io-1.3.2.jar不同版本的strutsjar文件的版本也可能不同,一般在配置s ...

  5. [ An Ac a Day ^_^ ] CodeForces 680A Bear and Five Cards

    这两天回家了 家里电脑太卡 调试不方便 就只能写写水题了…… #include<stdio.h> #include<iostream> #include<algorith ...

  6. 为什么 dll 改名字之后无法使用

    有人直接把dll名字改了,我的程序运行出错,说这是我程序的问题,难道真是这样吗? 总感觉直接改dll名字不对,但哪儿不对呢,带着这样的疑惑研究了一下,重新做了一下试验,结果程序抛出了错误: Could ...

  7. ios中获取当前屏幕尺寸的方法

    //获取当前屏幕尺寸 CGRect screenFrame = [UIScreen mainScreen].bounds; int screenWidth = screenFrame.size.wid ...

  8. wpf ListBox 双击事件时在子项添加Style 确保选中

    <ListBox ItemTemplate="{StaticResource CardPictureTemplate}" VirtualizingPanel.CacheLen ...

  9. #define const extern

    将父类中的常量放到. m文件,子类就不会重复包含了.之后再.h文件中用extern NSSting * const ILScoreShowStartTime;// extern 用来声明变量和函数.c ...

  10. SVN通过域名连不上服务器地址(svn: E175002: OPTIONS request failed on '/svn/yx-SVN-Server' Connection refused: connect)

    用域名直连就连不上,如果换成了ip直连就可以连接上去了 https://yx-server01/svn/yx-SVN-Server 换为了 https://192.168.188.208/svn/yx ...