The patch titled
PM: fix compiler error of PPC dart_iommu
has been added to the -mm tree. Its filename is
pm-fix-compiler-error-of-ppc-dart_iommu.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: PM: fix compiler error of PPC dart_iommu
From: Ryusuke Konishi <[EMAIL PROTECTED]>
A dummy inline function of register_nosave_region_late was accidentally
removed by the recent PM patch that introduced suspend notifiers.
This elimination causes the following compiler error on PPC machines.
CC arch/powerpc/sysdev/dart_iommu.o
arch/powerpc/sysdev/dart_iommu.c: In function 'iommu_init_late_dart':
arch/powerpc/sysdev/dart_iommu.c:376: error: implicit declaration of function
'register_nosave_region_late'
make[1]: *** [arch/powerpc/sysdev/dart_iommu.o] Error 1
make: *** [arch/powerpc/sysdev] Error 2
This patch fixes the problem.
Signed-off-by: Ryusuke Konishi <[EMAIL PROTECTED]>
Acked-by: Rafael J. Wysocki <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
include/linux/suspend.h | 3 +++
1 files changed, 3 insertions(+)
diff -puN include/linux/suspend.h~pm-fix-compiler-error-of-ppc-dart_iommu
include/linux/suspend.h
--- a/include/linux/suspend.h~pm-fix-compiler-error-of-ppc-dart_iommu
+++ a/include/linux/suspend.h
@@ -125,6 +125,9 @@ static inline int unregister_pm_notifier
static inline void register_nosave_region(unsigned long b, unsigned long e)
{
}
+static inline void register_nosave_region_late(unsigned long b, unsigned long
e)
+{
+}
#endif
#endif /* _LINUX_SWSUSP_H */
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
pm-fix-compiler-error-of-ppc-dart_iommu.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html