Lines Matching refs:rcdev
39 struct reset_controller_dev rcdev; member
42 static int sun9i_mmc_reset_assert(struct reset_controller_dev *rcdev, in sun9i_mmc_reset_assert() argument
45 struct sun9i_mmc_clk_data *data = container_of(rcdev, in sun9i_mmc_reset_assert()
47 rcdev); in sun9i_mmc_reset_assert()
64 static int sun9i_mmc_reset_deassert(struct reset_controller_dev *rcdev, in sun9i_mmc_reset_deassert() argument
67 struct sun9i_mmc_clk_data *data = container_of(rcdev, in sun9i_mmc_reset_deassert()
69 rcdev); in sun9i_mmc_reset_deassert()
160 data->rcdev.owner = THIS_MODULE; in sun9i_a80_mmc_config_clk_probe()
161 data->rcdev.nr_resets = count; in sun9i_a80_mmc_config_clk_probe()
162 data->rcdev.ops = &sun9i_mmc_reset_ops; in sun9i_a80_mmc_config_clk_probe()
163 data->rcdev.of_node = pdev->dev.of_node; in sun9i_a80_mmc_config_clk_probe()
165 ret = reset_controller_register(&data->rcdev); in sun9i_a80_mmc_config_clk_probe()
193 reset_controller_unregister(&data->rcdev); in sun9i_a80_mmc_config_clk_remove()