From: Paul Gortmaker Date: Fri, 21 Aug 2015 20:27:49 +0000 (-0400) Subject: drivers/dma: make mv_xor.c driver explicitly non-modular X-Git-Tag: omap-for-v4.3/fixes-rc1~94^2~10 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25cf68da08389bb107e5cba2cbfb3b6e4a246095;p=pandora-kernel.git drivers/dma: make mv_xor.c driver explicitly non-modular The Kconfig for this driver is currently: config MV_XOR bool "Marvell XOR engine support" ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned, so that when reading the driver there is no doubt it is builtin-only. Since module_init translates to device_initcall in the non-modular case, the init ordering remains unchanged with this commit. We leave some tags like MODULE_AUTHOR for documentation purposes. Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code. Cc: Vinod Koul Cc: Dan Williams Cc: dmaengine@vger.kernel.org Signed-off-by: Paul Gortmaker Signed-off-by: Vinod Koul --- Reading git-diff-tree failed