Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
3146c8f4
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 4 年多
通知
15
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
3146c8f4
编写于
4月 28, 2017
作者:
B
Bjorn Helgaas
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'pci/remove' into next
* pci/remove: PCI: Don't allow unbinding host controllers that aren't prepared
上级
ef1b5dad
a5f40e80
变更
13
隐藏空白更改
内联
并排
Showing
13 changed file
with
14 addition
and
0 deletion
+14
-0
drivers/pci/dwc/pci-imx6.c
drivers/pci/dwc/pci-imx6.c
+1
-0
drivers/pci/dwc/pci-layerscape.c
drivers/pci/dwc/pci-layerscape.c
+1
-0
drivers/pci/dwc/pcie-armada8k.c
drivers/pci/dwc/pcie-armada8k.c
+1
-0
drivers/pci/dwc/pcie-artpec6.c
drivers/pci/dwc/pcie-artpec6.c
+1
-0
drivers/pci/dwc/pcie-designware-plat.c
drivers/pci/dwc/pcie-designware-plat.c
+1
-0
drivers/pci/dwc/pcie-hisi.c
drivers/pci/dwc/pcie-hisi.c
+2
-0
drivers/pci/dwc/pcie-spear13xx.c
drivers/pci/dwc/pcie-spear13xx.c
+1
-0
drivers/pci/host/pci-ftpci100.c
drivers/pci/host/pci-ftpci100.c
+1
-0
drivers/pci/host/pci-host-generic.c
drivers/pci/host/pci-host-generic.c
+1
-0
drivers/pci/host/pci-thunder-ecam.c
drivers/pci/host/pci-thunder-ecam.c
+1
-0
drivers/pci/host/pci-thunder-pem.c
drivers/pci/host/pci-thunder-pem.c
+1
-0
drivers/pci/host/pci-versatile.c
drivers/pci/host/pci-versatile.c
+1
-0
drivers/pci/host/pci-xgene.c
drivers/pci/host/pci-xgene.c
+1
-0
未找到文件。
drivers/pci/dwc/pci-imx6.c
浏览文件 @
3146c8f4
...
...
@@ -804,6 +804,7 @@ static struct platform_driver imx6_pcie_driver = {
.
driver
=
{
.
name
=
"imx6q-pcie"
,
.
of_match_table
=
imx6_pcie_of_match
,
.
suppress_bind_attrs
=
true
,
},
.
probe
=
imx6_pcie_probe
,
.
shutdown
=
imx6_pcie_shutdown
,
...
...
drivers/pci/dwc/pci-layerscape.c
浏览文件 @
3146c8f4
...
...
@@ -305,6 +305,7 @@ static struct platform_driver ls_pcie_driver = {
.
driver
=
{
.
name
=
"layerscape-pcie"
,
.
of_match_table
=
ls_pcie_of_match
,
.
suppress_bind_attrs
=
true
,
},
};
builtin_platform_driver_probe
(
ls_pcie_driver
,
ls_pcie_probe
);
drivers/pci/dwc/pcie-armada8k.c
浏览文件 @
3146c8f4
...
...
@@ -262,6 +262,7 @@ static struct platform_driver armada8k_pcie_driver = {
.
driver
=
{
.
name
=
"armada8k-pcie"
,
.
of_match_table
=
of_match_ptr
(
armada8k_pcie_of_match
),
.
suppress_bind_attrs
=
true
,
},
};
builtin_platform_driver
(
armada8k_pcie_driver
);
drivers/pci/dwc/pcie-artpec6.c
浏览文件 @
3146c8f4
...
...
@@ -295,6 +295,7 @@ static struct platform_driver artpec6_pcie_driver = {
.
driver
=
{
.
name
=
"artpec6-pcie"
,
.
of_match_table
=
artpec6_pcie_of_match
,
.
suppress_bind_attrs
=
true
,
},
};
builtin_platform_driver
(
artpec6_pcie_driver
);
drivers/pci/dwc/pcie-designware-plat.c
浏览文件 @
3146c8f4
...
...
@@ -133,6 +133,7 @@ static struct platform_driver dw_plat_pcie_driver = {
.
driver
=
{
.
name
=
"dw-pcie"
,
.
of_match_table
=
dw_plat_pcie_of_match
,
.
suppress_bind_attrs
=
true
,
},
.
probe
=
dw_plat_pcie_probe
,
};
...
...
drivers/pci/dwc/pcie-hisi.c
浏览文件 @
3146c8f4
...
...
@@ -333,6 +333,7 @@ static struct platform_driver hisi_pcie_driver = {
.
driver
=
{
.
name
=
"hisi-pcie"
,
.
of_match_table
=
hisi_pcie_of_match
,
.
suppress_bind_attrs
=
true
,
},
};
builtin_platform_driver
(
hisi_pcie_driver
);
...
...
@@ -390,6 +391,7 @@ static struct platform_driver hisi_pcie_almost_ecam_driver = {
.
driver
=
{
.
name
=
"hisi-pcie-almost-ecam"
,
.
of_match_table
=
hisi_pcie_almost_ecam_of_match
,
.
suppress_bind_attrs
=
true
,
},
};
builtin_platform_driver
(
hisi_pcie_almost_ecam_driver
);
...
...
drivers/pci/dwc/pcie-spear13xx.c
浏览文件 @
3146c8f4
...
...
@@ -308,6 +308,7 @@ static struct platform_driver spear13xx_pcie_driver = {
.
driver
=
{
.
name
=
"spear-pcie"
,
.
of_match_table
=
of_match_ptr
(
spear13xx_pcie_of_match
),
.
suppress_bind_attrs
=
true
,
},
};
...
...
drivers/pci/host/pci-ftpci100.c
浏览文件 @
3146c8f4
...
...
@@ -556,6 +556,7 @@ static struct platform_driver faraday_pci_driver = {
.
driver
=
{
.
name
=
"ftpci100"
,
.
of_match_table
=
of_match_ptr
(
faraday_pci_of_match
),
.
suppress_bind_attrs
=
true
,
},
.
probe
=
faraday_pci_probe
,
};
...
...
drivers/pci/host/pci-host-generic.c
浏览文件 @
3146c8f4
...
...
@@ -60,6 +60,7 @@ static struct platform_driver gen_pci_driver = {
.
driver
=
{
.
name
=
"pci-host-generic"
,
.
of_match_table
=
gen_pci_of_match
,
.
suppress_bind_attrs
=
true
,
},
.
probe
=
gen_pci_probe
,
};
...
...
drivers/pci/host/pci-thunder-ecam.c
浏览文件 @
3146c8f4
...
...
@@ -373,6 +373,7 @@ static struct platform_driver thunder_ecam_driver = {
.
driver
=
{
.
name
=
KBUILD_MODNAME
,
.
of_match_table
=
thunder_ecam_of_match
,
.
suppress_bind_attrs
=
true
,
},
.
probe
=
thunder_ecam_probe
,
};
...
...
drivers/pci/host/pci-thunder-pem.c
浏览文件 @
3146c8f4
...
...
@@ -474,6 +474,7 @@ static struct platform_driver thunder_pem_driver = {
.
driver
=
{
.
name
=
KBUILD_MODNAME
,
.
of_match_table
=
thunder_pem_of_match
,
.
suppress_bind_attrs
=
true
,
},
.
probe
=
thunder_pem_probe
,
};
...
...
drivers/pci/host/pci-versatile.c
浏览文件 @
3146c8f4
...
...
@@ -222,6 +222,7 @@ static struct platform_driver versatile_pci_driver = {
.
driver
=
{
.
name
=
"versatile-pci"
,
.
of_match_table
=
versatile_pci_of_match
,
.
suppress_bind_attrs
=
true
,
},
.
probe
=
versatile_pci_probe
,
};
...
...
drivers/pci/host/pci-xgene.c
浏览文件 @
3146c8f4
...
...
@@ -697,6 +697,7 @@ static struct platform_driver xgene_pcie_driver = {
.
driver
=
{
.
name
=
"xgene-pcie"
,
.
of_match_table
=
of_match_ptr
(
xgene_pcie_match_table
),
.
suppress_bind_attrs
=
true
,
},
.
probe
=
xgene_pcie_probe_bridge
,
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录