Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
make RTL8169_READ_GMII_REG, RTL8169_WRITE_GMII_REG static
  • Loading branch information
Holger Lubitz committed Jul 27, 2007
1 parent 9280f26 commit 77ffd63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/drivers/net/r8169.c
Expand Up @@ -400,7 +400,7 @@ static void rtl8169_hw_PHY_config(struct nic *nic __unused);
// 20-16 5-bit GMII/MII register address
// 15-0 16-bit GMII/MII register data
//=================================================================
void RTL8169_WRITE_GMII_REG(unsigned long ioaddr, int RegAddr, int value)
static void RTL8169_WRITE_GMII_REG(unsigned long ioaddr, int RegAddr, int value)
{
int i;

Expand All @@ -418,7 +418,7 @@ void RTL8169_WRITE_GMII_REG(unsigned long ioaddr, int RegAddr, int value)
}

//=================================================================
int RTL8169_READ_GMII_REG(unsigned long ioaddr, int RegAddr)
static int RTL8169_READ_GMII_REG(unsigned long ioaddr, int RegAddr)
{
int i, value = -1;

Expand Down

0 comments on commit 77ffd63

Please sign in to comment.