[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20211016054136.13286-1-sakiwit@gmail.com>
Date: Fri, 15 Oct 2021 23:41:34 -0600
From: Jεan Sacren <sakiwit@...il.com>
To: "David S . Miller" <davem@...emloft.net>
Cc: kuba@...nel.org, netdev@...r.kernel.org
Subject: [PATCH net-next 1/2] net: macvtap: fix template string argument of device_create() call
From: Jean Sacren <sakiwit@...il.com>
The last argument of device_create() call should be a template string.
The tap_name variable should be the argument to the string, but not the
argument of the call itself. We should add the template string and turn
tap_name into its argument.
Signed-off-by: Jean Sacren <sakiwit@...il.com>
---
drivers/net/macvtap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c
index 694e2f5dbbe5..6b12902a803f 100644
--- a/drivers/net/macvtap.c
+++ b/drivers/net/macvtap.c
@@ -169,7 +169,7 @@ static int macvtap_device_event(struct notifier_block *unused,
devt = MKDEV(MAJOR(macvtap_major), vlantap->tap.minor);
classdev = device_create(&macvtap_class, &dev->dev, devt,
- dev, tap_name);
+ dev, "%s", tap_name);
if (IS_ERR(classdev)) {
tap_free_minor(macvtap_major, &vlantap->tap);
return notifier_from_errno(PTR_ERR(classdev));
Powered by blists - more mailing lists