diff options
author | Dhananjay Phadke <dhananjay@netxen.com> | 2009-09-11 11:28:12 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-11 16:58:42 -0700 |
commit | ea6828b8aa3a8ebae8d7740f32f212ba1d2f0742 (patch) | |
tree | 6a783fc6ceb9de3edf2577af1ed5d6acc0deca74 /drivers/net/netxen/netxen_nic.h | |
parent | f78c0850d2ebe7a44a4b0263480a2f1a36a92218 (diff) |
netxen: improve pci memory access
o Access on card memory through memory controller (agent)
rather than moving small pci window around. Clean up the
code for moving windows around.
o Restrict memory accesss to 64 bit, currently only firmware
download uses this.
Signed-off-by: Dhananjay Phadke <dhananjay@netxen.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/netxen/netxen_nic.h')
-rw-r--r-- | drivers/net/netxen/netxen_nic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/netxen/netxen_nic.h b/drivers/net/netxen/netxen_nic.h index 23718887d02..7e3d2b93279 100644 --- a/drivers/net/netxen/netxen_nic.h +++ b/drivers/net/netxen/netxen_nic.h @@ -552,8 +552,8 @@ struct netxen_hardware_context { int qdr_sn_window; int ddr_mn_window; - unsigned long mn_win_crb; - unsigned long ms_win_crb; + u32 mn_win_crb; + u32 ms_win_crb; u8 cut_through; u8 revision_id; |