alistair23-linux/sound/drivers
Julia Lawall f11b799282 [ALSA] sound: Use time_before, time_before_eq, etc.
The functions time_before, time_before_eq, time_after, and time_after_eq
are more robust for comparing jiffies against other values.
A simplified version of the semantic patch making this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@ change_compare_np @
expression E;
@@
(
- jiffies <= E
+ time_before_eq(jiffies,E)
|
- jiffies >= E
+ time_after_eq(jiffies,E)
|
- jiffies < E
+ time_before(jiffies,E)
|
- jiffies > E
+ time_after(jiffies,E)
)
@ include depends on change_compare_np @
@@
#include <linux/jiffies.h>
@ no_include depends on !include && change_compare_np @
@@
  #include <linux/...>
+ #include <linux/jiffies.h>
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
2008-01-31 17:29:45 +01:00
..
mpu401 [ALSA] mpu401: fix recursive locking in timer 2007-11-19 18:38:32 +01:00
opl3 [ALSA] opl3 - Fix build errors 2008-01-31 17:29:14 +01:00
opl4 [ALSA] Changed Jaroslav Kysela's e-mail from perex@suse.cz to perex@perex.cz 2007-10-16 16:51:18 +02:00
vx [ALSA] vxpocket - Check value range in ctl callbacks 2008-01-31 17:29:25 +01:00
dummy.c [ALSA] Changed Jaroslav Kysela's e-mail from perex@suse.cz to perex@perex.cz 2007-10-16 16:51:18 +02:00
Kconfig [ALSA] Xilinx ML403 AC97 Controller Reference device driver 2008-01-31 17:29:15 +01:00
Makefile [ALSA] Xilinx ML403 AC97 Controller Reference device driver 2008-01-31 17:29:15 +01:00
ml403-ac97cr.c [ALSA] drivers - Add missing snd_card_set_dev() 2008-01-31 17:29:29 +01:00
mtpav.c
mts64.c [ALSA] drivers - Add missing snd_card_set_dev() 2008-01-31 17:29:29 +01:00
pcm-indirect2.c [ALSA] [ML403-AC97CR] Fix capture/periodic overrun bug 2008-01-31 17:29:15 +01:00
pcm-indirect2.h [ALSA] Xilinx ML403 AC97 Controller Reference device driver 2008-01-31 17:29:15 +01:00
portman2x4.c [ALSA] drivers - Add missing snd_card_set_dev() 2008-01-31 17:29:29 +01:00
serial-u16550.c [ALSA] sound: Use time_before, time_before_eq, etc. 2008-01-31 17:29:45 +01:00
virmidi.c [ALSA] fix section mismatch 2007-07-20 11:11:33 +02:00