Home
last modified time | relevance | path

Searched refs:byte_shift (Results 1 – 1 of 1) sorted by relevance

/rk3399_rockchip-uboot/drivers/mmc/
H A Dbcm2835_sdhci.c116 u32 byte_shift = byte_num * 8; in bcm2835_sdhci_writeb() local
117 u32 mask = 0xff << byte_shift; in bcm2835_sdhci_writeb()
118 u32 newval = (oldval & ~mask) | (val << byte_shift); in bcm2835_sdhci_writeb()
144 u32 byte_shift = byte_num * 8; in bcm2835_sdhci_readb() local
145 u32 byte = (val >> byte_shift) & 0xff; in bcm2835_sdhci_readb()