diff options
author | Stas Sergeev <stsp@aknet.ru> | 2008-03-04 11:28:43 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-04-24 12:00:21 +0200 |
commit | a91605b86a234b01d2f99b38411ac30a40bdf067 (patch) | |
tree | b87f7036e7903b32bd1aff3d5fe77f32ace352da /sound | |
parent | 368c7a95ea324b3f9728ba1c901ac119d409bf4e (diff) |
[ALSA] pcsp - clean ups
- make pcsp_start_timer_tasklet static
- remove redundant includes. <asm/i8253.h> is not available on all platforms.
Signed-off-by: Stas Sergeev <stsp@aknet.ru>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/drivers/pcsp/pcsp.c | 2 | ||||
-rw-r--r-- | sound/drivers/pcsp/pcsp_lib.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/sound/drivers/pcsp/pcsp.c b/sound/drivers/pcsp/pcsp.c index 34477286b39..264d2a56dcd 100644 --- a/sound/drivers/pcsp/pcsp.c +++ b/sound/drivers/pcsp/pcsp.c @@ -11,9 +11,7 @@ #include <sound/core.h> #include <sound/initval.h> #include <sound/pcm.h> - #include <linux/input.h> -#include <linux/delay.h> #include <asm/bitops.h> #include "pcsp_input.h" #include "pcsp.h" diff --git a/sound/drivers/pcsp/pcsp_lib.c b/sound/drivers/pcsp/pcsp_lib.c index 6bdcb89129d..a302756eac7 100644 --- a/sound/drivers/pcsp/pcsp_lib.c +++ b/sound/drivers/pcsp/pcsp_lib.c @@ -9,10 +9,8 @@ #include <linux/module.h> #include <linux/moduleparam.h> #include <sound/pcm.h> -#include <sound/pcm_params.h> #include <linux/interrupt.h> #include <asm/io.h> -#include <asm/i8253.h> #include "pcsp.h" static int nforce_wa; @@ -45,7 +43,7 @@ static void pcsp_start_timer(unsigned long dummy) * The only solution I could find was to move the * hrtimer_start() into a tasklet. -stsp */ -DECLARE_TASKLET(pcsp_start_timer_tasklet, pcsp_start_timer, 0); +static DECLARE_TASKLET(pcsp_start_timer_tasklet, pcsp_start_timer, 0); enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) { |