-
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.
- Loading branch information
Rafał Miłecki
authored and
Artem Bityutskiy
committed
Feb 4, 2013
1 parent
adf1949
commit de1564f
Showing
4 changed files
with
41 additions
and
14 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: 396afe553bd607dca4d28b00b6cab2ea826acba2 | ||
refs/heads/master: a2f74a7dacc1c17a0b146eb3112217874c5db436 |
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,15 @@ | ||
#ifndef __BCM47XXSFLASH_H | ||
#define __BCM47XXSFLASH_H | ||
|
||
#include <linux/mtd/mtd.h> | ||
|
||
struct bcm47xxsflash { | ||
u32 window; | ||
u32 blocksize; | ||
u16 numblocks; | ||
u32 size; | ||
|
||
struct mtd_info mtd; | ||
}; | ||
|
||
#endif /* BCM47XXSFLASH */ |
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 |
---|---|---|
|
@@ -528,6 +528,7 @@ struct bcma_sflash { | |
u32 size; | ||
|
||
struct mtd_info *mtd; | ||
void *priv; | ||
}; | ||
#endif | ||
|
||
|