Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
f5dd8071
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f5dd8071
编写于
8月 20, 2018
作者:
J
Jiri Kosina
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-4.19/intel-ish' into for-linus
Device-specific fixes for hid-intel-ish
上级
4435b577
50fa9259
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
5 deletion
+17
-5
drivers/hid/intel-ish-hid/ipc/ipc.c
drivers/hid/intel-ish-hid/ipc/ipc.c
+6
-3
drivers/hid/intel-ish-hid/ipc/pci-ish.c
drivers/hid/intel-ish-hid/ipc/pci-ish.c
+11
-2
未找到文件。
drivers/hid/intel-ish-hid/ipc/ipc.c
浏览文件 @
f5dd8071
...
...
@@ -907,8 +907,9 @@ struct ishtp_device *ish_dev_init(struct pci_dev *pdev)
struct
ishtp_device
*
dev
;
int
i
;
dev
=
kzalloc
(
sizeof
(
struct
ishtp_device
)
+
sizeof
(
struct
ish_hw
),
GFP_KERNEL
);
dev
=
devm_kzalloc
(
&
pdev
->
dev
,
sizeof
(
struct
ishtp_device
)
+
sizeof
(
struct
ish_hw
),
GFP_KERNEL
);
if
(
!
dev
)
return
NULL
;
...
...
@@ -925,7 +926,9 @@ struct ishtp_device *ish_dev_init(struct pci_dev *pdev)
for
(
i
=
0
;
i
<
IPC_TX_FIFO_SIZE
;
++
i
)
{
struct
wr_msg_ctl_info
*
tx_buf
;
tx_buf
=
kzalloc
(
sizeof
(
struct
wr_msg_ctl_info
),
GFP_KERNEL
);
tx_buf
=
devm_kzalloc
(
&
pdev
->
dev
,
sizeof
(
struct
wr_msg_ctl_info
),
GFP_KERNEL
);
if
(
!
tx_buf
)
{
/*
* IPC buffers may be limited or not available
...
...
drivers/hid/intel-ish-hid/ipc/pci-ish.c
浏览文件 @
f5dd8071
...
...
@@ -95,6 +95,13 @@ static int ish_init(struct ishtp_device *dev)
return
0
;
}
static
const
struct
pci_device_id
ish_invalid_pci_ids
[]
=
{
/* Mehlow platform special pci ids */
{
PCI_DEVICE
(
PCI_VENDOR_ID_INTEL
,
0xA309
)},
{
PCI_DEVICE
(
PCI_VENDOR_ID_INTEL
,
0xA30A
)},
{}
};
/**
* ish_probe() - PCI driver probe callback
* @pdev: pci device
...
...
@@ -110,6 +117,10 @@ static int ish_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
struct
ish_hw
*
hw
;
int
ret
;
/* Check for invalid platforms for ISH support */
if
(
pci_dev_present
(
ish_invalid_pci_ids
))
return
-
ENODEV
;
/* enable pci dev */
ret
=
pci_enable_device
(
pdev
);
if
(
ret
)
{
...
...
@@ -172,7 +183,6 @@ static int ish_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
free_irq
(
pdev
->
irq
,
dev
);
free_device:
pci_iounmap
(
pdev
,
hw
->
mem_addr
);
kfree
(
dev
);
release_regions:
pci_release_regions
(
pdev
);
disable_device:
...
...
@@ -202,7 +212,6 @@ static void ish_remove(struct pci_dev *pdev)
pci_release_regions
(
pdev
);
pci_clear_master
(
pdev
);
pci_disable_device
(
pdev
);
kfree
(
ishtp_dev
);
}
static
struct
device
__maybe_unused
*
ish_resume_device
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录