linux/drivers/staging/goldfish
Aya Mahfouz d7d3e89858 staging: goldfish: remove extra parentheses around function arguments
Removes extra parentheses around function arguments. Issue
detected and resolved using the following coccinelle script:

@@
expression e;
identifier f;
@@

f(...,
-(
e
-)
,...)

Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-03-15 18:41:14 +01:00
..
goldfish_audio.c staging: goldfish: remove extra parentheses around function arguments 2015-03-15 18:41:14 +01:00
goldfish_nand_reg.h goldfish: clean up staging ifdefs 2014-05-15 13:20:41 -07:00
goldfish_nand.c staging: goldfish: avoid multiple assignments 2014-09-06 21:54:57 -07:00
Kconfig
Makefile
README staging: goldfish: switch from spinlock to mutex 2014-04-16 20:12:55 -07:00

Audio
-----
- Move to using the ALSA framework not faking it
- Fix the wrong user page DMA (moving to ALSA may fix that too)

NAND
----
- Remove excess checking of parameters in calls
- Use dma coherent memory not kmalloc/__pa for the memory (this is just
  a cleanliness issue not a correctness one)