From: Randy Dunlap <rdunlap@xenotime.net>
Date: Sat, 30 Jul 2011 04:14:12 +0000 (-0700)
Subject: ALSA: rtctimer.c needs module.h
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ec2cf68e024b4f66df11683147d63e07db6ee875;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

ALSA: rtctimer.c needs module.h

rtctimer.c uses interfaces from linux/module.h, so it should
include that file.  This fixes build errors.

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---

diff --git a/sound/core/rtctimer.c b/sound/core/rtctimer.c
index 0851cd13e303..e85e72baff9e 100644
--- a/sound/core/rtctimer.c
+++ b/sound/core/rtctimer.c
@@ -22,7 +22,7 @@
 
 #include <linux/init.h>
 #include <linux/interrupt.h>
-#include <linux/moduleparam.h>
+#include <linux/module.h>
 #include <linux/log2.h>
 #include <sound/core.h>
 #include <sound/timer.h>