Merge tag 'driver-core-5.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / drivers / hv / vmbus_drv.c
index 9c1b362..714d549 100644 (file)
@@ -575,31 +575,11 @@ static ssize_t driver_override_store(struct device *dev,
                                     const char *buf, size_t count)
 {
        struct hv_device *hv_dev = device_to_hv_device(dev);
-       char *driver_override, *old, *cp;
-
-       /* We need to keep extra room for a newline */
-       if (count >= (PAGE_SIZE - 1))
-               return -EINVAL;
-
-       driver_override = kstrndup(buf, count, GFP_KERNEL);
-       if (!driver_override)
-               return -ENOMEM;
-
-       cp = strchr(driver_override, '\n');
-       if (cp)
-               *cp = '\0';
-
-       device_lock(dev);
-       old = hv_dev->driver_override;
-       if (strlen(driver_override)) {
-               hv_dev->driver_override = driver_override;
-       } else {
-               kfree(driver_override);
-               hv_dev->driver_override = NULL;
-       }
-       device_unlock(dev);
+       int ret;
 
-       kfree(old);
+       ret = driver_set_override(dev, &hv_dev->driver_override, buf, count);
+       if (ret)
+               return ret;
 
        return count;
 }