diff options
author | 2024-12-10 12:09:33 +0100 | |
---|---|---|
committer | 2024-12-10 03:25:32 -0800 | |
commit | d14b9a713b3458ce4908ca883c7277f0863cfe21 (patch) | |
tree | 38d2a6fd7281521e0e0404de963843baffd9ae62 | |
parent | xtensa: Remove zero-length alignment array (diff) | |
download | wireguard-linux-d14b9a713b3458ce4908ca883c7277f0863cfe21.tar.xz wireguard-linux-d14b9a713b3458ce4908ca883c7277f0863cfe21.zip |
xtensa/simdisk: Use str_write_read() helper in simdisk_transfer()
Remove hard-coded strings by using the str_write_read() helper.
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Message-Id: <20241210110935.104919-2-thorsten.blum@linux.dev>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
-rw-r--r-- | arch/xtensa/platforms/iss/simdisk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/xtensa/platforms/iss/simdisk.c b/arch/xtensa/platforms/iss/simdisk.c index d6d2b533a574..6ed009318d24 100644 --- a/arch/xtensa/platforms/iss/simdisk.c +++ b/arch/xtensa/platforms/iss/simdisk.c @@ -14,6 +14,7 @@ #include <linux/kernel.h> #include <linux/init.h> #include <linux/string.h> +#include <linux/string_choices.h> #include <linux/blkdev.h> #include <linux/bio.h> #include <linux/proc_fs.h> @@ -75,7 +76,7 @@ static void simdisk_transfer(struct simdisk *dev, unsigned long sector, if (offset > dev->size || dev->size - offset < nbytes) { pr_notice("Beyond-end %s (%ld %ld)\n", - write ? "write" : "read", offset, nbytes); + str_write_read(write), offset, nbytes); return; } |