swh:1:snp:77163734605b0ec556b01d897b7bb4a7e30d46b6
Raw File
Tip revision: 0d7614f09c1ebdbaa1599a5aba7593f147bf96ee authored by Linus Torvalds on 02 August 2012, 23:38:10 UTC
Linux 3.6-rc1
Tip revision: 0d7614f
driver_chipcommon_sflash.c
/*
 * Broadcom specific AMBA
 * ChipCommon serial flash interface
 *
 * Licensed under the GNU/GPL. See COPYING for details.
 */

#include <linux/bcma/bcma.h>
#include <linux/bcma/bcma_driver_chipcommon.h>
#include <linux/delay.h>

#include "bcma_private.h"

/* Initialize serial flash access */
int bcma_sflash_init(struct bcma_drv_cc *cc)
{
	bcma_err(cc->core->bus, "Serial flash support is broken\n");
	return 0;
}
back to top