Lines Matching refs:bottom
107 u32 bottom; in macb_set_hwaddr() local
110 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr)); in macb_set_hwaddr()
111 macb_or_gem_writel(bp, SA1B, bottom); in macb_set_hwaddr()
127 u32 bottom; in macb_get_hwaddr() local
136 bottom = macb_or_gem_readl(bp, SA1B + i * 8); in macb_get_hwaddr()
140 addr[5] = bottom & 0xff; in macb_get_hwaddr()
141 addr[4] = (bottom >> 8) & 0xff; in macb_get_hwaddr()
142 addr[3] = (bottom >> 16) & 0xff; in macb_get_hwaddr()
143 addr[2] = (bottom >> 24) & 0xff; in macb_get_hwaddr()
147 addr[0] = bottom & 0xff; in macb_get_hwaddr()
148 addr[1] = (bottom >> 8) & 0xff; in macb_get_hwaddr()
149 addr[2] = (bottom >> 16) & 0xff; in macb_get_hwaddr()
150 addr[3] = (bottom >> 24) & 0xff; in macb_get_hwaddr()