
21 Sep
2009
21 Sep
'09
10:48 a.m.
Dear Graeme Russ,
In message d66caabb0909201837g28da0ed5k6069e96775cfb358@mail.gmail.com you wrote:
ecm->eedr = 0xffffffff; /* clear ecm errors */
ecm->eeer = 0xffffffff; /* enable ecm errors */
out_be32(&ecm->eedr, 0xffffffff); /* clear ecm errors */
out_be32(&ecm->eeer, 0xffffffff); /* enable ecm errors */ return 0;
Correct me if I'm wrong, but I thought the general rule was the other way (i.e. the way it alreay was). See for example:
You are wrong. We must use I/O accessors.
http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=commit;h=ed7a1b681de1e3...
Ouch. This patch is clearly bloken. Sorry it escaped my attention.
Using a C structure to describe the hardware is a good thing, but we still must use I/O accessors to access the registers.
This needs to be fixed in your code.
This prevents, for example, accidentally writing words and longs to byte sized registers.
Right. The I/O accessors still allow for strict type checking.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
"What is wanted is not the will to believe, but the will to find out,
which is the exact opposite." - Bertrand Russell, _Sceptical_Essays_,
1928