mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 07:23:14 +00:00
72a525cbb8
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
19 lines
353 B
C
19 lines
353 B
C
/*
|
|
* Sonics Silicon Backplane
|
|
* ChipCommon serial flash interface
|
|
*
|
|
* Licensed under the GNU/GPL. See COPYING for details.
|
|
*/
|
|
|
|
#include <linux/ssb/ssb.h>
|
|
|
|
#include "ssb_private.h"
|
|
|
|
/* Initialize serial flash access */
|
|
int ssb_sflash_init(struct ssb_chipcommon *cc)
|
|
{
|
|
pr_err("Serial flash support is not implemented yet!\n");
|
|
|
|
return -ENOTSUPP;
|
|
}
|