From: Linus Torvalds Date: Sat, 24 Mar 2012 17:24:31 +0000 (-0700) Subject: Merge tag 'module-for-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg... X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=11bcb32848ddb5ab28f09f142b625e2ba4d55c4c;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git Merge tag 'module-for-3.4' of git://git./linux/kernel/git/paulg/linux Pull cleanup of fs/ and lib/ users of module.h from Paul Gortmaker: "Fix up files in fs/ and lib/ dirs to only use module.h if they really need it. These are trivial in scope vs the work done previously. We now have things where any few remaining cleanups can be farmed out to arch or subsystem maintainers, and I have done so when possible. What is remaining here represents the bits that don't clearly lie within a single arch/subsystem boundary, like the fs dir and the lib dir. Some duplicate includes arising from overlapping fixes from independent subsystem maintainer submissions are also quashed." Fix up trivial conflicts due to clashes with other include file cleanups (including some due to the previous bug.h cleanup pull). * tag 'module-for-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux: lib: reduce the use of module.h wherever possible fs: reduce the use of module.h wherever possible includecheck: delete any duplicate instances of module.h --- 11bcb32848ddb5ab28f09f142b625e2ba4d55c4c diff --cc lib/iommu-helper.c index 8b1ab6222562,ae7d50b05764..c27e269210c4 --- a/lib/iommu-helper.c +++ b/lib/iommu-helper.c @@@ -2,9 -2,8 +2,9 @@@ * IOMMU helper functions for the free area management */ - #include + #include #include +#include int iommu_is_span_boundary(unsigned int index, unsigned int nr, unsigned long shift, diff --cc lib/list_debug.c index 1bf2fe36f813,c7a1f0b6a78a..982b850d4e7a --- a/lib/list_debug.c +++ b/lib/list_debug.c @@@ -6,9 -6,8 +6,9 @@@ * DEBUG_LIST. */ - #include + #include #include +#include #include /* diff --cc lib/timerqueue.c index 14c640355eb1,93287c60099b..a382e4a32609 --- a/lib/timerqueue.c +++ b/lib/timerqueue.c @@@ -22,10 -22,9 +22,10 @@@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include #include #include - #include + #include /** * timerqueue_add - Adds timer to timerqueue.