首页 > 其他分享 >解决“ ignoring dependency for device, assuming no driver”错误

解决“ ignoring dependency for device, assuming no driver”错误

时间:2022-12-23 10:12:28浏览次数:41  
标签:no driver ignoring platform assuming device dependency

最近升级内核版本,需要把内核从4.14升级到4.19,控制台就是没有打印,通过strings __log_buf 发现报错

dw-apb-uart f8041000.serial1: ignoring dependency for device, assuming no driverSUBSYSTEM=platform
DEVICE=+platform:f8041000.serial1l\
gmac f5060000.gmac0: ignoring dependency for device, assuming no driverSUBSYSTEM=platform
DEVICE=+platform:f5060000.gmac0
leds-gpio leds: ignoring dependency for device, assuming no driverSUBSYSTEM=platform
DEVICE=+platform:leds

由于设备树只打开了这几个设备,猜测是pinctrl没有生效,导致其他设备异常,最终发现pinctrl目录没有编译进去。

总结:这种问题可能有几个原因造成

1、设备树节点内包含的其他节点驱动没有编译进内核;

2、节点内电源相关的没有添加;

3、大部分设备受影响,一般为公共属性出现了问题,比如pinmux,power等;

4、单个设备受影响,可能包含的某一个节点有问题了。

 

标签:no,driver,ignoring,platform,assuming,device,dependency
From: https://www.cnblogs.com/yddeboke/p/17000099.html

相关文章

  • homebrew 安装node 切换node版本
    注意:如果之前使用brewinstallnode安装过node,需要先执行brewunlink node来’解绑’node1、查找可用的node版本brewsearchnode2、安装你需要的版本,比如brewins......
  • Kubernetes(K8S) kubectl top (metrics-server) node NotFound
    kubectltop命令安装metrics-servercomponents.yaml网上的各种方法都有问题,找到了一个完整版的yamlapiVersion:v1kind:ServiceAccountmetadata:labels:k8s-app......
  • 单细胞数据 mkfastq | 10x Genomics
     除了刚接触10x的那会儿,还真没怎么亲自倒腾过fastq的制作。正常从测序商那里拿到的应该是bcl的原始数据,需要自己做一步bcl2fastq。后面大家都觉得这一步太麻烦了,没必要......
  • Codeforces 1654 G Snowy Mountain 题解 (重心分治)
    题目链接假设现在起点已经确定,我们观察从这个起点开始能走的最长路径长什么样。把这条最长路径中所有的非平地路径拿出来,它们肯定连成一线,因为不允许上坡;而一条路径重复走......
  • “NOPEN”远控木马分析报告
    “NOPEN”远控木马分析报告发布日期:2022年09月02日    点击:44近日,国家计算机病毒应急处理中心对名为“NOPEN”的木马工具进行了攻击场景复现和技术分析。该木马......
  • When the Chrysler Diagnostic Tool inform you registration
    Alwayssomebuyerusethe ChryslerDiagnosticTool,itwillappeartheregistrationmessage,whatshouldbedone?Theonethingyouneedtodoisclickitoff......
  • [CF1748E] Yet Another Array Counting Problem
    题目描述Thepositionoftheleftmostmaximumonthesegment$[l;r]$ofarray$x=[x_1,x_2,\ldots,x_n]$isthesmallestinteger$i$suchthat$l\l......
  • Node.js(笔记04) - 时钟示例 - fs 和 path 模块结合应用
    案例需求将素材目录​./files​ 中的index.html 页面,拆分成三个文件,分别是:index.cssindex.jsindex.html并且将拆分出来的3个文件,存放到​./files/clock​ 目录中;这个i......
  • NOIP2022游记
    当时考完记错了一个地方,真的以为自己退役了,哭到不能自已,感谢上帝,感谢OI,感谢自己再给自己一个追逐梦想的机会。Day-1离开考还有两天的晚上,宿舍在讨论奇奇怪怪的话题,内容......
  • luoguP2254 [NOI2005]瑰丽华尔兹 题解
    传送门题意给定\(n\)行\(m\)列的矩阵和钢琴的初始位置\((x,y)\),给定\(k\)个时间段,在每个时间段内钢琴会向给定方向(上/下/左/右)滑动,\(1\)秒移动\(1\)个单位长度......