summaryrefslogtreecommitdiffstats
path: root/src/drivers
diff options
context:
space:
mode:
authorMichael Brown2011-03-16 20:05:53 +0100
committerMichael Brown2011-03-16 20:32:23 +0100
commit68a48b2220976401394068980f1e2688f38c9769 (patch)
treebc679c5dc7463ab19aac0677113653ed4ba3c73c /src/drivers
parent[sis900] Avoid unused variable warning in gcc 4.6 (diff)
downloadipxe-68a48b2220976401394068980f1e2688f38c9769.tar.gz
ipxe-68a48b2220976401394068980f1e2688f38c9769.tar.xz
ipxe-68a48b2220976401394068980f1e2688f38c9769.zip
[via-velocity] Avoid unused variable warning in gcc 4.6
Reported-by: Ralph Giles <giles@thaumas.net> Tested-by: Ralph Giles <giles@thaumas.net> Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/net/via-velocity.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/drivers/net/via-velocity.c b/src/drivers/net/via-velocity.c
index 549460a5..fa90f9b3 100644
--- a/src/drivers/net/via-velocity.c
+++ b/src/drivers/net/via-velocity.c
@@ -1225,8 +1225,6 @@ static int velocity_init_rings(struct velocity_info *vptr)
#define COMMAND_WAIT 0x80
static int velocity_open(struct nic *nic, struct pci_device *pci __unused)
{
- int ret;
-
u8 diff;
u32 TxPhyAddr, RxPhyAddr;
u32 TxBufPhyAddr, RxBufPhyAddr;
@@ -1278,7 +1276,7 @@ static int velocity_open(struct nic *nic, struct pci_device *pci __unused)
// turn this on to detect MII coding error
PCI_BYTE_REG_BITS_ON(MODE3_MIION, PCI_REG_MODE3, pci);
*/
- ret = velocity_init_rings(vptr);
+ velocity_init_rings(vptr);
/* Ensure chip is running */
//FIXME: pci_set_power_state(vptr->pdev, PCI_D0);
@@ -1608,26 +1606,13 @@ static void set_mii_flow_control(struct velocity_info *vptr)
static int velocity_set_media_mode(struct velocity_info *vptr,
u32 mii_status)
{
- u32 curr_status;
struct mac_regs *regs = vptr->mac_regs;
vptr->mii_status = mii_check_media_mode(vptr->mac_regs);
- curr_status = vptr->mii_status & (~VELOCITY_LINK_FAIL);
/* Set mii link status */
set_mii_flow_control(vptr);
- /*
- Check if new status is consisent with current status
- if (((mii_status & curr_status) & VELOCITY_AUTONEG_ENABLE)
- || (mii_status==curr_status)) {
- vptr->mii_status=mii_check_media_mode(vptr->mac_regs);
- vptr->mii_status=check_connection_type(vptr->mac_regs);
- printf(MSG_LEVEL_INFO, "Velocity link no change\n");
- return 0;
- }
- */
-
if (PHYID_GET_PHY_ID(vptr->phy_id) == PHYID_CICADA_CS8201) {
MII_REG_BITS_ON(AUXCR_MDPPS, MII_REG_AUXCR,
vptr->mac_regs);