driver_chipcommon_nflash.c 412 B

12345678910111213141516171819
  1. /*
  2. * Broadcom specific AMBA
  3. * ChipCommon NAND flash interface
  4. *
  5. * Licensed under the GNU/GPL. See COPYING for details.
  6. */
  7. #include <linux/bcma/bcma.h>
  8. #include <linux/bcma/bcma_driver_chipcommon.h>
  9. #include <linux/delay.h>
  10. #include "bcma_private.h"
  11. /* Initialize NAND flash access */
  12. int bcma_nflash_init(struct bcma_drv_cc *cc)
  13. {
  14. bcma_err(cc->core->bus, "NAND flash support is broken\n");
  15. return 0;
  16. }