Skip to content

Commit 56a50e3

Browse files
kzall0cherbertx
authored andcommitted
crypto: ccp - Fix typo in psp_populate_hsti function name
The function "psp_poulate_hsti" was misspelled. This patch corrects the typo to "psp_populate_hsti" in both the function definition and its call site within psp_init_hsti(). Signed-off-by: Yunseong Kim <ysk@kzalloc.com> Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>> --- Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
1 parent 361fa7f commit 56a50e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/crypto/ccp/hsti.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ struct attribute_group psp_security_attr_group = {
7474
.is_visible = psp_security_is_visible,
7575
};
7676

77-
static int psp_poulate_hsti(struct psp_device *psp)
77+
static int psp_populate_hsti(struct psp_device *psp)
7878
{
7979
struct hsti_request *req;
8080
int ret;
@@ -114,7 +114,7 @@ int psp_init_hsti(struct psp_device *psp)
114114
int ret;
115115

116116
if (PSP_FEATURE(psp, HSTI)) {
117-
ret = psp_poulate_hsti(psp);
117+
ret = psp_populate_hsti(psp);
118118
if (ret)
119119
return ret;
120120
}

0 commit comments

Comments
 (0)