* Parameters:
  *  In:
  *      iobase          - I/O base address
- *      byContntOffset  - address of EEPROM
+ *      contnt_offset  - address of EEPROM
  *  Out:
  *      none
  *
  *
  */
 unsigned char SROMbyReadEmbedded(void __iomem *iobase,
-                                unsigned char byContntOffset)
+                                unsigned char contnt_offset)
 {
        unsigned short wDelay, wNoACK;
        unsigned char byWait;
        iowrite8(byOrg & (~I2MCFG_NORETRY), iobase + MAC_REG_I2MCFG);
        for (wNoACK = 0; wNoACK < W_MAX_I2CRETRY; wNoACK++) {
                iowrite8(EEP_I2C_DEV_ID, iobase + MAC_REG_I2MTGID);
-               iowrite8(byContntOffset, iobase + MAC_REG_I2MTGAD);
+               iowrite8(contnt_offset, iobase + MAC_REG_I2MTGAD);
 
                /* issue read command */
                iowrite8(I2MCSR_EEMR, iobase + MAC_REG_I2MCSR);