Lines Matching refs:rcdev
38 struct reset_controller_dev rcdev; member
41 static int sun9i_mmc_reset_assert(struct reset_controller_dev *rcdev, in sun9i_mmc_reset_assert() argument
44 struct sun9i_mmc_clk_data *data = container_of(rcdev, in sun9i_mmc_reset_assert()
46 rcdev); in sun9i_mmc_reset_assert()
63 static int sun9i_mmc_reset_deassert(struct reset_controller_dev *rcdev, in sun9i_mmc_reset_deassert() argument
66 struct sun9i_mmc_clk_data *data = container_of(rcdev, in sun9i_mmc_reset_deassert()
68 rcdev); in sun9i_mmc_reset_deassert()
159 data->rcdev.owner = THIS_MODULE; in sun9i_a80_mmc_config_clk_probe()
160 data->rcdev.nr_resets = count; in sun9i_a80_mmc_config_clk_probe()
161 data->rcdev.ops = &sun9i_mmc_reset_ops; in sun9i_a80_mmc_config_clk_probe()
162 data->rcdev.of_node = pdev->dev.of_node; in sun9i_a80_mmc_config_clk_probe()
164 ret = reset_controller_register(&data->rcdev); in sun9i_a80_mmc_config_clk_probe()
192 reset_controller_unregister(&data->rcdev); in sun9i_a80_mmc_config_clk_remove()