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>
This commit is contained in:
Thorsten Blum 2024-12-10 12:09:33 +01:00 committed by Max Filippov
parent 5055d82bce
commit d14b9a713b

View File

@ -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;
}