Home
last modified time | relevance | path

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

/drivers/edac/
Dedac_device.c61 struct edac_device_ctl_info *dev_ctl; in edac_device_alloc_ctl_info() local
81 dev_ctl = edac_align_ptr(&p, sizeof(*dev_ctl), 1); in edac_device_alloc_ctl_info()
112 dev_ctl = kzalloc(total_size, GFP_KERNEL); in edac_device_alloc_ctl_info()
113 if (dev_ctl == NULL) in edac_device_alloc_ctl_info()
124 (((char *)dev_ctl) + ((unsigned long)dev_inst)); in edac_device_alloc_ctl_info()
126 (((char *)dev_ctl) + ((unsigned long)dev_blk)); in edac_device_alloc_ctl_info()
128 (((char *)dev_ctl) + ((unsigned long)dev_attrib)); in edac_device_alloc_ctl_info()
129 pvt = sz_private ? (((char *)dev_ctl) + ((unsigned long)pvt)) : NULL; in edac_device_alloc_ctl_info()
132 dev_ctl->dev_idx = device_index; in edac_device_alloc_ctl_info()
133 dev_ctl->nr_instances = nr_instances; in edac_device_alloc_ctl_info()
[all …]
/drivers/mfd/
Dt7l66xb.c84 u8 dev_ctl; in t7l66xb_mmc_enable() local
93 dev_ctl = tmio_ioread8(t7l66xb->scr + SCR_DEV_CTL); in t7l66xb_mmc_enable()
94 dev_ctl |= SCR_DEV_CTL_MMC; in t7l66xb_mmc_enable()
95 tmio_iowrite8(dev_ctl, t7l66xb->scr + SCR_DEV_CTL); in t7l66xb_mmc_enable()
109 u8 dev_ctl; in t7l66xb_mmc_disable() local
113 dev_ctl = tmio_ioread8(t7l66xb->scr + SCR_DEV_CTL); in t7l66xb_mmc_disable()
114 dev_ctl &= ~SCR_DEV_CTL_MMC; in t7l66xb_mmc_disable()
115 tmio_iowrite8(dev_ctl, t7l66xb->scr + SCR_DEV_CTL); in t7l66xb_mmc_disable()