Home
last modified time | relevance | path

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

/linux/drivers/char/hw_random/
H A Dstm32-rng.c77 struct stm32_rng_config pm_conf; member
397 priv->pm_conf.nscr = readl_relaxed(priv->base + RNG_NSCR); in stm32_rng_suspend()
398 priv->pm_conf.htcr = readl_relaxed(priv->base + RNG_HTCR); in stm32_rng_suspend()
402 priv->pm_conf.cr = readl_relaxed(priv->base + RNG_CR) & ~RNG_CR_RNGEN; in stm32_rng_suspend()
404 writel_relaxed(priv->pm_conf.cr, priv->base + RNG_CR); in stm32_rng_suspend()
451 writel_relaxed(priv->pm_conf.cr | RNG_CR_CONDRST, priv->base + RNG_CR); in stm32_rng_resume()
453 writel_relaxed(priv->pm_conf.nscr, priv->base + RNG_NSCR); in stm32_rng_resume()
454 writel_relaxed(priv->pm_conf.htcr, priv->base + RNG_HTCR); in stm32_rng_resume()
470 reg = priv->pm_conf.cr; in stm32_rng_resume()
/linux/drivers/net/vmxnet3/
H A Dvmxnet3_int.h387 struct Vmxnet3_PMConf *pm_conf; member
H A Dvmxnet3_drv.c4131 adapter->pm_conf = dma_alloc_coherent(&adapter->pdev->dev, in vmxnet3_probe_device()
4135 if (adapter->pm_conf == NULL) { in vmxnet3_probe_device()
4256 adapter->pm_conf, adapter->pm_conf_pa); in vmxnet3_probe_device()
4326 adapter->pm_conf, adapter->pm_conf_pa); in vmxnet3_remove_device()
4397 pmConf = adapter->pm_conf; in vmxnet3_suspend()