From: Luis R. Rodriguez Date: Mon, 23 Jan 2017 16:11:05 +0000 (-0800) Subject: test_firmware: move misc_device down X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=67fd553ce0e55a468ee24f61ddf6b40ba610bbb5;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git test_firmware: move misc_device down This will make further changes easier to review. Signed-off-by: Luis R. Rodriguez Signed-off-by: Greg Kroah-Hartman --- diff --git a/lib/test_firmware.c b/lib/test_firmware.c index a3e8ec3fb1c5..1cb9bf9eb41f 100644 --- a/lib/test_firmware.c +++ b/lib/test_firmware.c @@ -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;