summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShannon Nelson <shannon.nelson@amd.com>2025-04-09 01:33:00 +0300
committerJason Gunthorpe <jgg@nvidia.com>2025-04-12 02:47:45 +0300
commitc92ae5d4f53ebf9c32ace69c1f89a47e8714d18b (patch)
treebc5a638368579709a04f38667879d14e519c5536
parentfd292c1f100ccd006bebb7b4fe7308e68b3753e0 (diff)
downloadlinux-c92ae5d4f53ebf9c32ace69c1f89a47e8714d18b.tar.xz
fwctl: Fix repeated device word in log message
Remove the repeated word "device" from a dev_warn() message. Link: https://patch.msgid.link/r/20250408223300.24561-1-shannon.nelson@amd.com Signed-off-by: Shannon Nelson <shannon.nelson@amd.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-rw-r--r--drivers/fwctl/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/fwctl/main.c b/drivers/fwctl/main.c
index cb1ac9c40239..bc6378506296 100644
--- a/drivers/fwctl/main.c
+++ b/drivers/fwctl/main.c
@@ -105,7 +105,7 @@ static int fwctl_cmd_rpc(struct fwctl_ucmd *ucmd)
if (!test_and_set_bit(0, &fwctl_tainted)) {
dev_warn(
&fwctl->dev,
- "%s(%d): has requested full access to the physical device device",
+ "%s(%d): has requested full access to the physical device",
current->comm, task_pid_nr(current));
add_taint(TAINT_FWCTL, LOCKDEP_STILL_OK);
}