-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 315626 b: refs/heads/master c: 23cb3b2 h: refs/heads/master v: v3
- Loading branch information
Rafał Miłecki
authored and
John W. Linville
committed
Jul 17, 2012
1 parent
fb22ae1
commit d434d34
Showing
7 changed files
with
85 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 124b979baeb2d7a0593be8d392f43725578478c1 | ||
refs/heads/master: 23cb3b2121323443834296a8ecb582b8aeb78d75 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* Broadcom specific AMBA | ||
* ChipCommon NAND 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 NAND flash access */ | ||
int bcma_nflash_init(struct bcma_drv_cc *cc) | ||
{ | ||
bcma_err(cc->core->bus, "NAND flash support is broken\n"); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* 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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters