1
0
Fork 0

test_firmware: move misc_device down

This will make further changes easier to review.

Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Luis R. Rodriguez 2017-01-23 08:11:05 -08:00 committed by Greg Kroah-Hartman
parent fd0c478c0d
commit 67fd553ce0
1 changed files with 6 additions and 6 deletions

View File

@ -42,12 +42,6 @@ static const struct file_operations test_fw_fops = {
.read = test_fw_misc_read,
};
static struct miscdevice test_fw_misc_device = {
.minor = MISC_DYNAMIC_MINOR,
.name = "test_firmware",
.fops = &test_fw_fops,
};
static ssize_t trigger_request_store(struct device *dev,
struct device_attribute *attr,
const char *buf, size_t count)
@ -132,6 +126,12 @@ out:
}
static DEVICE_ATTR_WO(trigger_async_request);
static struct miscdevice test_fw_misc_device = {
.minor = MISC_DYNAMIC_MINOR,
.name = "test_firmware",
.fops = &test_fw_fops,
};
static int __init test_firmware_init(void)
{
int rc;