return;
 }
 
-static inline unsigned char
-cpld_read_reg(struct hfc_multi *hc, unsigned char reg)
-{
-       unsigned char bytein;
-
-       cpld_set_reg(hc, reg);
-
-       /* Do data pin read low byte */
-       HFC_outb(hc, R_GPIO_OUT1, reg);
-
-       enablepcibridge(hc);
-       bytein = readpcibridge(hc, 1);
-       disablepcibridge(hc);
-
-       return bytein;
-}
-
 static inline void
 vpm_write_address(struct hfc_multi *hc, unsigned short addr)
 {
        cpld_write_reg(hc, 1, 0x01 & (addr >> 8));
 }
 
-static inline unsigned short
-vpm_read_address(struct hfc_multi *c)
-{
-       unsigned short addr;
-       unsigned short highbit;
-
-       addr = cpld_read_reg(c, 0);
-       highbit = cpld_read_reg(c, 1);
-
-       addr = addr | (highbit << 8);
-
-       return addr & 0x1ff;
-}
-
 static inline unsigned char
 vpm_in(struct hfc_multi *c, int which, unsigned short addr)
 {