diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2009-05-12 15:38:55 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2009-05-12 15:38:55 +0000 |
commit | 01624f40eeec33c546150a240f194f057f6dd36e (patch) | |
tree | 5ef84e3f82ae6d3d7643bc85faafe63eff3256a9 /nic3com.c | |
parent | 24f9fbe075107b58a2729a8f5d7da346ebe730e6 (diff) | |
download | flashrom-01624f40eeec33c546150a240f194f057f6dd36e.tar.gz flashrom-01624f40eeec33c546150a240f194f057f6dd36e.tar.bz2 flashrom-01624f40eeec33c546150a240f194f057f6dd36e.zip |
Use helper functions chip_{read,write}[bwl] to access flash chips
The semantic patch I used in r418 to make the original conversion to
accessor functions was missing one isomorphism:
a[b] <=> *(a+b)
The semantic patcher Coccinelle was used to create this patch. Semantic
patch follows:
@@
typedef uint8_t;
expression a;
volatile uint8_t *b;
@@
- b[a]
+ *(b + a)
@@
expression a;
volatile uint8_t *b;
@@
- *(b) = (a);
+ chip_writeb(a, b);
@@
volatile uint8_t *b;
@@
- *(b)
+ chip_readb(b)
@@
type T;
T b;
@@
(
chip_readb
|
chip_writeb
)
(...,
- (T)
- (b)
+ b
)
Corresponding to flashrom svn r498.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'nic3com.c')
0 files changed, 0 insertions, 0 deletions