Skip to content

Commit

Permalink
power_supply: EXPORT_SYMBOL cleanups
Browse files Browse the repository at this point in the history
While I'm at it, cleanup the power supply code so that EXPORT_SYMBOL_GPL
appears directly after the symbole declaration. checkpatch.pl wants it
that way.

Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Ian Molton <spyro@f2s.com>
Cc: Matt Reimer <mreimer@vpop.net>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
  • Loading branch information
Daniel Mack authored and Anton Vorontsov committed Jul 30, 2009
1 parent 02d0d27 commit ff3417e
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions drivers/power/power_supply_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
#include <linux/power_supply.h>
#include "power_supply.h"

/* exported for the APM Power driver, APM emulation */
struct class *power_supply_class;
EXPORT_SYMBOL_GPL(power_supply_class);

static int __power_supply_changed_work(struct device *dev, void *data)
{
Expand Down Expand Up @@ -55,6 +57,7 @@ void power_supply_changed(struct power_supply *psy)

schedule_work(&psy->changed_work);
}
EXPORT_SYMBOL_GPL(power_supply_changed);

static int __power_supply_am_i_supplied(struct device *dev, void *data)
{
Expand Down Expand Up @@ -86,6 +89,7 @@ int power_supply_am_i_supplied(struct power_supply *psy)

return error;
}
EXPORT_SYMBOL_GPL(power_supply_am_i_supplied);

static int __power_supply_is_system_supplied(struct device *dev, void *data)
{
Expand All @@ -110,6 +114,7 @@ int power_supply_is_system_supplied(void)

return error;
}
EXPORT_SYMBOL_GPL(power_supply_is_system_supplied);

int power_supply_register(struct device *parent, struct power_supply *psy)
{
Expand Down Expand Up @@ -144,6 +149,7 @@ int power_supply_register(struct device *parent, struct power_supply *psy)
success:
return rc;
}
EXPORT_SYMBOL_GPL(power_supply_register);

void power_supply_unregister(struct power_supply *psy)
{
Expand All @@ -152,6 +158,7 @@ void power_supply_unregister(struct power_supply *psy)
power_supply_remove_attrs(psy);
device_unregister(psy->dev);
}
EXPORT_SYMBOL_GPL(power_supply_unregister);

static int __init power_supply_class_init(void)
{
Expand All @@ -170,15 +177,6 @@ static void __exit power_supply_class_exit(void)
class_destroy(power_supply_class);
}

EXPORT_SYMBOL_GPL(power_supply_changed);
EXPORT_SYMBOL_GPL(power_supply_am_i_supplied);
EXPORT_SYMBOL_GPL(power_supply_is_system_supplied);
EXPORT_SYMBOL_GPL(power_supply_register);
EXPORT_SYMBOL_GPL(power_supply_unregister);

/* exported for the APM Power driver, APM emulation */
EXPORT_SYMBOL_GPL(power_supply_class);

subsys_initcall(power_supply_class_init);
module_exit(power_supply_class_exit);

Expand Down

0 comments on commit ff3417e

Please sign in to comment.