These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / sound / sound_firmware.c
index b155137..0263476 100644 (file)
@@ -12,7 +12,6 @@ static int do_mod_firmware_load(const char *fn, char **fp)
        struct file* filp;
        long l;
        char *dp;
-       loff_t pos;
 
        filp = filp_open(fn, 0, 0);
        if (IS_ERR(filp))
@@ -34,8 +33,7 @@ static int do_mod_firmware_load(const char *fn, char **fp)
                fput(filp);
                return 0;
        }
-       pos = 0;
-       if (vfs_read(filp, dp, l, &pos) != l)
+       if (kernel_read(filp, 0, dp, l) != l)
        {
                printk(KERN_INFO "Failed to read '%s'.\n", fn);
                vfree(dp);