Message ID | 20210922100430.161434-1-colin.king@canonical.com |
---|---|
State | Accepted |
Headers | show |
Series | smccc_test: fix missing ) in pr_info call | expand |
On 2021-09-22 4:04 a.m., Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > Missing ) will cause a build failure, fix this. > > Signed-off-by: Colin Ian King <colin.king@canonical.com> > --- > smccc_test/smccc_test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/smccc_test/smccc_test.c b/smccc_test/smccc_test.c > index 553399eb..eb0826d6 100644 > --- a/smccc_test/smccc_test.c > +++ b/smccc_test/smccc_test.c > @@ -229,7 +229,7 @@ static void __exit smccc_test_exit(void) > > static int __init smccc_test_init(void) > { > - pr_info(MODULE_NAME ": ARM SMCCC not supported on this kernel and architecture\n", > + pr_info(MODULE_NAME ": ARM SMCCC not supported on this kernel and architecture\n"); > > return -ENODEV; > } > Acked-by: Alex Hung <alex.hung@canonical.com>
On 9/22/21 6:04 PM, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > Missing ) will cause a build failure, fix this. > > Signed-off-by: Colin Ian King <colin.king@canonical.com> > --- > smccc_test/smccc_test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/smccc_test/smccc_test.c b/smccc_test/smccc_test.c > index 553399eb..eb0826d6 100644 > --- a/smccc_test/smccc_test.c > +++ b/smccc_test/smccc_test.c > @@ -229,7 +229,7 @@ static void __exit smccc_test_exit(void) > > static int __init smccc_test_init(void) > { > - pr_info(MODULE_NAME ": ARM SMCCC not supported on this kernel and architecture\n", > + pr_info(MODULE_NAME ": ARM SMCCC not supported on this kernel and architecture\n"); > > return -ENODEV; > } > Acked-by: Ivan Hu <ivan.hu@canonical.com>
diff --git a/smccc_test/smccc_test.c b/smccc_test/smccc_test.c index 553399eb..eb0826d6 100644 --- a/smccc_test/smccc_test.c +++ b/smccc_test/smccc_test.c @@ -229,7 +229,7 @@ static void __exit smccc_test_exit(void) static int __init smccc_test_init(void) { - pr_info(MODULE_NAME ": ARM SMCCC not supported on this kernel and architecture\n", + pr_info(MODULE_NAME ": ARM SMCCC not supported on this kernel and architecture\n"); return -ENODEV; }