1
0
Fork 0
alistair23-linux/drivers/staging/goldfish
Peter Huewe f6fcf7f79b staging/goldfish: Add MTD dependency to KCONFIG
If CONFIG_MTD is not set goldfish_nand fails to compile with the
following linker warnings:

drivers/built-in.o: In function `goldfish_nand_remove':
goldfish_nand.c:(.text+0x6e7d0e): undefined reference to
`mtd_device_unregister'
drivers/built-in.o: In function `goldfish_nand_erase':
goldfish_nand.c:(.text+0x6e8ba2): undefined reference to
`mtd_erase_callback'
drivers/built-in.o: In function `goldfish_nand_init_device':
goldfish_nand.c:(.text+0x6e8eba): undefined reference to
`mtd_device_parse_register'

Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2013-02-07 17:16:07 -08:00
..
Kconfig staging/goldfish: Add MTD dependency to KCONFIG 2013-02-07 17:16:07 -08:00
Makefile goldfish: NAND flash driver 2013-01-24 13:53:23 -08:00
README goldfish: NAND flash driver 2013-01-24 13:53:23 -08:00
goldfish_audio.c
goldfish_nand.c staging/goldfish: Use %zx for printing size_t variables 2013-02-07 17:16:07 -08:00
goldfish_nand_reg.h goldfish: NAND flash driver 2013-01-24 13:53:23 -08:00

README

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

NAND
----
- Switch from spinlock to mutex
- 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)