Skip to content
Snippets Groups Projects
Commit 6fb49e4a authored by Paul Burton's avatar Paul Burton Committed by Tom Rini
Browse files

pcnet: force ordering of descriptor accesses


The ordering of accesses to the rx & tx descriptors is important, yet
the send & recv functions accessed them via regular structure accesses.
This leaves the compiler with the opportunity to reorder those accesses
or to hoist them outside of loops. Prevent that from happening by using
readl & writel to access the descriptors. As a nice bonus, this removes
the need for the driver to care about endianness.

Signed-off-by: default avatarPaul Burton <paul.burton@imgtec.com>
parent a354ddc3
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment