Move the firmware_class sample drivers to samples/ so that they are
buildable and can be maintained.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
                       "firmware_sample_driver: Firmware not available\n");
                return;
        }
-       
+
        sample_firmware_load(fw_entry->data, fw_entry->size);
 
        release_firmware(fw_entry);
                       "firmware_sample_driver: Firmware load failed\n");
                return;
        }
-       
+
        /* request_firmware blocks until userspace finished, so at
         * this point the firmware should be already in the device */
 
                                         "my device pointer",
                                         sample_probe_async_cont);
        if(error){
-               printk(KERN_ERR 
+               printk(KERN_ERR
                       "firmware_sample_driver:"
                       " request_firmware_nowait failed\n");
        }
 
        int prev_loading = fw_priv->loading;
 
        fw_priv->loading = simple_strtol(buf, NULL, 10);
-       
+
        switch(fw_priv->loading){
        case -1:
                /* abort load an panic */
        }
 
        goto out;
-       
+
 error_remove_data:
        sysfs_remove_bin_file(&class_dev->kobj, &firmware_attr_data);
 error_unreg_class_dev:
        kfree(fw_priv);
        kfree(class_dev);
 }
+
 module_init(firmware_sample_init);
 module_exit(firmware_sample_exit);
-