Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
27c1789c
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
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看板
提交
27c1789c
编写于
6月 10, 2013
作者:
R
Russell King
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
DMA-API: crypto: remove last references to 'static struct device *dev'
Signed-off-by:
N
Russell King
<
rmk+kernel@arm.linux.org.uk
>
上级
d8cbc3f7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
5 deletion
+8
-5
drivers/crypto/ixp4xx_crypto.c
drivers/crypto/ixp4xx_crypto.c
+8
-5
未找到文件。
drivers/crypto/ixp4xx_crypto.c
浏览文件 @
27c1789c
...
...
@@ -221,7 +221,6 @@ static int support_aes = 1;
#define DRIVER_NAME "ixp4xx_crypto"
static
struct
platform_device
*
pdev
;
static
struct
device
*
dev
;
static
inline
dma_addr_t
crypt_virt2phys
(
struct
crypt_ctl
*
virt
)
{
...
...
@@ -250,6 +249,7 @@ static inline const struct ix_hash_algo *ix_hash(struct crypto_tfm *tfm)
static
int
setup_crypt_desc
(
void
)
{
struct
device
*
dev
=
&
pdev
->
dev
;
BUILD_BUG_ON
(
sizeof
(
struct
crypt_ctl
)
!=
64
);
crypt_virt
=
dma_alloc_coherent
(
dev
,
NPE_QLEN
*
sizeof
(
struct
crypt_ctl
),
...
...
@@ -350,6 +350,7 @@ static void finish_scattered_hmac(struct crypt_ctl *crypt)
static
void
one_packet
(
dma_addr_t
phys
)
{
struct
device
*
dev
=
&
pdev
->
dev
;
struct
crypt_ctl
*
crypt
;
struct
ixp_ctx
*
ctx
;
int
failed
;
...
...
@@ -419,7 +420,7 @@ static void crypto_done_action(unsigned long arg)
tasklet_schedule
(
&
crypto_done_tasklet
);
}
static
int
init_ixp_crypto
(
void
)
static
int
init_ixp_crypto
(
struct
device
*
dev
)
{
int
ret
=
-
ENODEV
;
u32
msg
[
2
]
=
{
0
,
0
};
...
...
@@ -506,7 +507,7 @@ static int init_ixp_crypto(void)
return
ret
;
}
static
void
release_ixp_crypto
(
void
)
static
void
release_ixp_crypto
(
struct
device
*
dev
)
{
qmgr_disable_irq
(
RECV_QID
);
tasklet_kill
(
&
crypto_done_tasklet
);
...
...
@@ -873,6 +874,7 @@ static int ablk_perform(struct ablkcipher_request *req, int encrypt)
enum
dma_data_direction
src_direction
=
DMA_BIDIRECTIONAL
;
struct
ablk_ctx
*
req_ctx
=
ablkcipher_request_ctx
(
req
);
struct
buffer_desc
src_hook
;
struct
device
*
dev
=
&
pdev
->
dev
;
gfp_t
flags
=
req
->
base
.
flags
&
CRYPTO_TFM_REQ_MAY_SLEEP
?
GFP_KERNEL
:
GFP_ATOMIC
;
...
...
@@ -997,6 +999,7 @@ static int aead_perform(struct aead_request *req, int encrypt,
unsigned
int
cryptlen
;
struct
buffer_desc
*
buf
,
src_hook
;
struct
aead_ctx
*
req_ctx
=
aead_request_ctx
(
req
);
struct
device
*
dev
=
&
pdev
->
dev
;
gfp_t
flags
=
req
->
base
.
flags
&
CRYPTO_TFM_REQ_MAY_SLEEP
?
GFP_KERNEL
:
GFP_ATOMIC
;
...
...
@@ -1426,7 +1429,7 @@ static int __init ixp_module_init(void)
spin_lock_init
(
&
desc_lock
);
spin_lock_init
(
&
emerg_lock
);
err
=
init_ixp_crypto
();
err
=
init_ixp_crypto
(
&
pdev
->
dev
);
if
(
err
)
{
platform_device_unregister
(
pdev
);
return
err
;
...
...
@@ -1492,7 +1495,7 @@ static void __exit ixp_module_exit(void)
if
(
ixp4xx_algos
[
i
].
registered
)
crypto_unregister_alg
(
&
ixp4xx_algos
[
i
].
crypto
);
}
release_ixp_crypto
();
release_ixp_crypto
(
&
pdev
->
dev
);
platform_device_unregister
(
pdev
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录