diff options
author | Bill Nottingham <notting@redhat.com> | 2007-05-30 03:59:02 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-07-08 22:16:39 -0400 |
commit | 287aa83dffd1b39859f49d73b0d67f57106de5f1 (patch) | |
tree | 8101259996254901fd15f8be6314efddd86e476a /drivers/net/netxen | |
parent | 40738f3fcdb951fb8ade286dc1ea05812acc94db (diff) |
drivers/net: fix comparisons of unsigned < 0
Recent gcc versions emit warnings when unsigned variables are compared < 0 or >= 0.
Signed-off-by: Bill Nottingham <notting@redhat.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/netxen')
-rw-r--r-- | drivers/net/netxen/netxen_nic_niu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/netxen/netxen_nic_niu.c b/drivers/net/netxen/netxen_nic_niu.c index 75102d30730f..05e0577a0e10 100644 --- a/drivers/net/netxen/netxen_nic_niu.c +++ b/drivers/net/netxen/netxen_nic_niu.c | |||
@@ -724,7 +724,7 @@ int netxen_niu_disable_gbe_port(struct netxen_adapter *adapter) | |||
724 | __u32 mac_cfg0; | 724 | __u32 mac_cfg0; |
725 | u32 port = physical_port[adapter->portnum]; | 725 | u32 port = physical_port[adapter->portnum]; |
726 | 726 | ||
727 | if ((port < 0) || (port > NETXEN_NIU_MAX_GBE_PORTS)) | 727 | if (port > NETXEN_NIU_MAX_GBE_PORTS) |
728 | return -EINVAL; | 728 | return -EINVAL; |
729 | mac_cfg0 = 0; | 729 | mac_cfg0 = 0; |
730 | netxen_gb_soft_reset(mac_cfg0); | 730 | netxen_gb_soft_reset(mac_cfg0); |
@@ -757,7 +757,7 @@ int netxen_niu_set_promiscuous_mode(struct netxen_adapter *adapter, | |||
757 | __u32 reg; | 757 | __u32 reg; |
758 | u32 port = physical_port[adapter->portnum]; | 758 | u32 port = physical_port[adapter->portnum]; |
759 | 759 | ||
760 | if ((port < 0) || (port > NETXEN_NIU_MAX_GBE_PORTS)) | 760 | if (port > NETXEN_NIU_MAX_GBE_PORTS) |
761 | return -EINVAL; | 761 | return -EINVAL; |
762 | 762 | ||
763 | /* save previous contents */ | 763 | /* save previous contents */ |
@@ -894,7 +894,7 @@ int netxen_niu_xg_set_promiscuous_mode(struct netxen_adapter *adapter, | |||
894 | __u32 reg; | 894 | __u32 reg; |
895 | u32 port = physical_port[adapter->portnum]; | 895 | u32 port = physical_port[adapter->portnum]; |
896 | 896 | ||
897 | if ((port < 0) || (port > NETXEN_NIU_MAX_XG_PORTS)) | 897 | if (port > NETXEN_NIU_MAX_XG_PORTS) |
898 | return -EINVAL; | 898 | return -EINVAL; |
899 | 899 | ||
900 | if (netxen_nic_hw_read_wx(adapter, | 900 | if (netxen_nic_hw_read_wx(adapter, |