summaryrefslogtreecommitdiffstats
path: root/sound/oss
diff options
context:
space:
mode:
authorMimi Zohar2017-09-13 04:45:33 +0200
committerLinus Torvalds2017-09-15 05:18:45 +0200
commit711aab1dbb324d321e3d84368a435a78908c7bce (patch)
tree59f2bfbe02d994f4f69dc8d44fc8a4a4bd12228b /sound/oss
parentMerge tag 'nfs-for-4.14-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs (diff)
downloadkernel-qcow2-linux-711aab1dbb324d321e3d84368a435a78908c7bce.tar.gz
kernel-qcow2-linux-711aab1dbb324d321e3d84368a435a78908c7bce.tar.xz
kernel-qcow2-linux-711aab1dbb324d321e3d84368a435a78908c7bce.zip
vfs: constify path argument to kernel_read_file_from_path
This patch constifies the path argument to kernel_read_file_from_path(). Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com> Cc: Christoph Hellwig <hch@infradead.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound/oss')
-rw-r--r--sound/oss/sound_firmware.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/sound_firmware.h b/sound/oss/sound_firmware.h
index da4c67e005ed..2be465277ba0 100644
--- a/sound/oss/sound_firmware.h
+++ b/sound/oss/sound_firmware.h
@@ -21,7 +21,7 @@ static inline int mod_firmware_load(const char *fn, char **fp)
loff_t size;
int err;
- err = kernel_read_file_from_path((char *)fn, (void **)fp, &size,
+ err = kernel_read_file_from_path(fn, (void **)fp, &size,
131072, READING_FIRMWARE);
if (err < 0)
return 0;