diff options
author | Mathieu Rhéaume <mathieu@codingrhemes.com> | 2013-10-01 05:29:39 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-10-07 08:09:46 -0400 |
commit | 764d022133979f9d9a179152cd89717e9752c61a (patch) | |
tree | 60c1f8b1f69b65f221a6a0c529e48f07e103c23b | |
parent | 7cc34680c1ab418d5c7fd0f9621515b7a0aa1d66 (diff) |
ACPI / processor: fixed a brace coding style issue
Fixed a brace coding style issue. (Brace not on the good line)
Signed-off-by: Mathieu Rhéaume <mathieu@codingrhemes.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/processor_driver.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c index e534ba66d5b8..40fc773ab6e0 100644 --- a/drivers/acpi/processor_driver.c +++ b/drivers/acpi/processor_driver.c | |||
@@ -153,8 +153,7 @@ static int acpi_cpu_soft_notify(struct notifier_block *nfb, | |||
153 | return NOTIFY_OK; | 153 | return NOTIFY_OK; |
154 | } | 154 | } |
155 | 155 | ||
156 | static struct notifier_block __refdata acpi_cpu_notifier = | 156 | static struct notifier_block __refdata acpi_cpu_notifier = { |
157 | { | ||
158 | .notifier_call = acpi_cpu_soft_notify, | 157 | .notifier_call = acpi_cpu_soft_notify, |
159 | }; | 158 | }; |
160 | 159 | ||