diff options
| author | Paul Mackerras <paulus@samba.org> | 2005-11-07 20:14:50 -0500 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2005-11-07 20:14:50 -0500 |
| commit | 3fb62b5148bd9df6b8a734988f5cf330251abdb4 (patch) | |
| tree | 70a9d5cae57815b97d5b092ccbec0ce0a635a668 | |
| parent | 22358ea8e1e88d65b073c3d2bb85d8c4e3bd44c1 (diff) | |
macintosh: Always export pmu_[un]register_sleep_notifier if CONFIG_PM set
This fixes a build error when building the pmac sound driver as a
module for 64-bit powermacs.
Signed-off-by: Paul Mackerras <paulus@samba.org>
| -rw-r--r-- | drivers/macintosh/via-pmu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/macintosh/via-pmu.c b/drivers/macintosh/via-pmu.c index 7ebbc0f53420..564043508569 100644 --- a/drivers/macintosh/via-pmu.c +++ b/drivers/macintosh/via-pmu.c | |||
| @@ -2053,6 +2053,7 @@ pmu_register_sleep_notifier(struct pmu_sleep_notifier *n) | |||
| 2053 | __list_add(&n->list, list->prev, list); | 2053 | __list_add(&n->list, list->prev, list); |
| 2054 | return 0; | 2054 | return 0; |
| 2055 | } | 2055 | } |
| 2056 | EXPORT_SYMBOL(pmu_register_sleep_notifier); | ||
| 2056 | 2057 | ||
| 2057 | int | 2058 | int |
| 2058 | pmu_unregister_sleep_notifier(struct pmu_sleep_notifier* n) | 2059 | pmu_unregister_sleep_notifier(struct pmu_sleep_notifier* n) |
| @@ -2063,6 +2064,7 @@ pmu_unregister_sleep_notifier(struct pmu_sleep_notifier* n) | |||
| 2063 | n->list.next = NULL; | 2064 | n->list.next = NULL; |
| 2064 | return 0; | 2065 | return 0; |
| 2065 | } | 2066 | } |
| 2067 | EXPORT_SYMBOL(pmu_unregister_sleep_notifier); | ||
| 2066 | #endif /* CONFIG_PM */ | 2068 | #endif /* CONFIG_PM */ |
| 2067 | 2069 | ||
| 2068 | #if defined(CONFIG_PM) && defined(CONFIG_PPC32) | 2070 | #if defined(CONFIG_PM) && defined(CONFIG_PPC32) |
| @@ -3139,8 +3141,6 @@ EXPORT_SYMBOL(pmu_i2c_stdsub_write); | |||
| 3139 | EXPORT_SYMBOL(pmu_i2c_simple_read); | 3141 | EXPORT_SYMBOL(pmu_i2c_simple_read); |
| 3140 | EXPORT_SYMBOL(pmu_i2c_simple_write); | 3142 | EXPORT_SYMBOL(pmu_i2c_simple_write); |
| 3141 | #if defined(CONFIG_PM) && defined(CONFIG_PPC32) | 3143 | #if defined(CONFIG_PM) && defined(CONFIG_PPC32) |
| 3142 | EXPORT_SYMBOL(pmu_register_sleep_notifier); | ||
| 3143 | EXPORT_SYMBOL(pmu_unregister_sleep_notifier); | ||
| 3144 | EXPORT_SYMBOL(pmu_enable_irled); | 3144 | EXPORT_SYMBOL(pmu_enable_irled); |
| 3145 | EXPORT_SYMBOL(pmu_battery_count); | 3145 | EXPORT_SYMBOL(pmu_battery_count); |
| 3146 | EXPORT_SYMBOL(pmu_batteries); | 3146 | EXPORT_SYMBOL(pmu_batteries); |
