Index: generic/include/align.h
===================================================================
--- generic/include/align.h	(revision e09d68ab5aa5fe4f5aa0dde9fa751a6fb3d7f2a0)
+++ generic/include/align.h	(revision effee6fbb246d1c32b76583262aed178a9f84add)
@@ -43,9 +43,5 @@
  * @param a Size of alignment, must be power of 2.
  */
-#ifdef ppc32	/* Nasty ppc32 hack. FIX ME. */
-#	define ALIGN_UP(s, a)		((s) % (a) ? (((s) / (a)) + 1) * (a) : (s))
-#else
-#	define ALIGN_UP(s, a)		(((s) + ((a) - 1)) & ~((a) - 1))
-#endif
+#define ALIGN_UP(s, a)		(((s) + ((a) - 1)) & ~((a) - 1))
 
 #endif
