aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/bgrt.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/acpi/bgrt.c b/drivers/acpi/bgrt.c
index a83e3c62c5a9..75f128e766a9 100644
--- a/drivers/acpi/bgrt.c
+++ b/drivers/acpi/bgrt.c
@@ -1,4 +1,6 @@
1/* 1/*
2 * BGRT boot graphic support
3 * Authors: Matthew Garrett, Josh Triplett <josh@joshtriplett.org>
2 * Copyright 2012 Red Hat, Inc <mjg@redhat.com> 4 * Copyright 2012 Red Hat, Inc <mjg@redhat.com>
3 * Copyright 2012 Intel Corporation 5 * Copyright 2012 Intel Corporation
4 * 6 *
@@ -8,7 +10,6 @@
8 */ 10 */
9 11
10#include <linux/kernel.h> 12#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/init.h> 13#include <linux/init.h>
13#include <linux/device.h> 14#include <linux/device.h>
14#include <linux/sysfs.h> 15#include <linux/sysfs.h>
@@ -103,9 +104,4 @@ out_kobject:
103 kobject_put(bgrt_kobj); 104 kobject_put(bgrt_kobj);
104 return ret; 105 return ret;
105} 106}
106 107device_initcall(bgrt_init);
107module_init(bgrt_init);
108
109MODULE_AUTHOR("Matthew Garrett, Josh Triplett <josh@joshtriplett.org>");
110MODULE_DESCRIPTION("BGRT boot graphic support");
111MODULE_LICENSE("GPL");