22 Nov
2007
22 Nov
'07
2:06 p.m.
On Tue, Nov 20, 2007 at 11:42:18AM +0000, Ben Dooks wrote:
S3C2412 SoC IIS support for ALSA/ASoC
Signed-off-by: Ben Dooks ben-linux@fluff.org
Signed-off-by: Mark Brown broonie@opensource.wolfsonmicro.com
Looks good, thanks - I've applied this to the linux-2.6-asoc tree with some minor checkpatch.pl cleanups (everything except the line lengths).
I did notice these:
+#define bit_set(v,b) (((v) & (b)) ? 1 : 0)
+#define ABS(x) (((x) < 0) ? (-(x)) : (x))
which look like they ought to be hoisted out into generic code.