linux/sound/soc
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
..
at91 [ALSA] sound: SPIN_LOCK_UNLOCKED cleanup 2007-05-11 16:56:08 +02:00
codecs [ALSA] cs4270: wrong sample rate when CONFIG_SND_SOC_CS4270_VD33_ERRATA is set 2008-01-31 17:29:42 +01:00
pxa [ARM] 4690/1: PXA: fix CKEN corruption in PXA27x AC97 cold reset code 2007-12-08 14:36:06 +00:00
s3c24xx [ALSA] sound: Use time_before, time_before_eq, etc. 2008-01-31 17:29:45 +01:00
sh [ALSA] ASoC: sh: improve generated code for HAC module (AC97) 2008-01-31 17:29:17 +01:00
Kconfig [ALSA] SH7760 ASoC support 2007-07-20 11:11:17 +02:00
Makefile [ALSA] SH7760 ASoC support 2007-07-20 11:11:17 +02:00
soc-core.c Fix misspellings of "system", "controller", "interrupt" and "necessary". 2007-10-19 23:10:43 +02:00
soc-dapm.c Fix misspellings of "system", "controller", "interrupt" and "necessary". 2007-10-19 23:10:43 +02:00