diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2011-07-30 08:14:12 +0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-07-30 10:03:35 +0400 |
commit | ec2cf68e024b4f66df11683147d63e07db6ee875 (patch) | |
tree | e82a5a52c38c3475706f80ce480c3ef703f9ac67 /sound | |
parent | 5f8b4d53d7efe00ecb7d96c8cc0b4a44e130f174 (diff) | |
download | linux-ec2cf68e024b4f66df11683147d63e07db6ee875.tar.xz |
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>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/core/rtctimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
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> |