From: Colin Ian King Date: Sun, 1 Sep 2024 16:04:30 +0000 (+0100) Subject: crypto: hisilicon/sec - Remove trailing space after \n newline X-Git-Tag: v6.12-rc1~231^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a0e435e808d60b163d7bf78ec1002f80a5d127d5;p=thirdparty%2Fkernel%2Flinux.git crypto: hisilicon/sec - Remove trailing space after \n newline There is a extraneous space after a newline in a dev_err message. Remove it. Signed-off-by: Colin Ian King Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/hisilicon/sec/sec_drv.c b/drivers/crypto/hisilicon/sec/sec_drv.c index afdddf87cc348..9bafcc5aa404f 100644 --- a/drivers/crypto/hisilicon/sec/sec_drv.c +++ b/drivers/crypto/hisilicon/sec/sec_drv.c @@ -458,7 +458,7 @@ static void sec_ipv6_hashmask(struct sec_dev_info *info, u32 hash_mask[]) static int sec_ipv4_hashmask(struct sec_dev_info *info, u32 hash_mask) { if (hash_mask & SEC_HASH_IPV4_MASK) { - dev_err(info->dev, "Sec Ipv4 Hash Mask Input Error!\n "); + dev_err(info->dev, "Sec Ipv4 Hash Mask Input Error!\n"); return -EINVAL; }