diff options
author | Randy Dunlap <[email protected]> | 2011-07-29 21:14:12 -0700 |
---|---|---|
committer | Takashi Iwai <[email protected]> | 2011-07-30 08:03:35 +0200 |
commit | ec2cf68e024b4f66df11683147d63e07db6ee875 (patch) | |
tree | e82a5a52c38c3475706f80ce480c3ef703f9ac67 | |
parent | 5f8b4d53d7efe00ecb7d96c8cc0b4a44e130f174 (diff) |
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 <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
-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> |