at91rm9200.c (9d4d8572a539ef807e21c196f145aa365fd52f0e) | at91rm9200.c (428d97e18594bc2c5cfd7207dff883384bac6822) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2#include <linux/clk-provider.h> 3#include <linux/mfd/syscon.h> 4#include <linux/slab.h> 5 6#include <dt-bindings/clock/at91.h> 7 8#include "pmc.h" --- 201 unchanged lines hidden (view full) --- 210 kfree(at91rm9200_pmc); 211} 212/* 213 * While the TCB can be used as the clocksource, the system timer is most likely 214 * to be used instead. However, the pinctrl driver doesn't support probe 215 * deferring properly. Once this is fixed, this can be switched to a platform 216 * driver. 217 */ | 1// SPDX-License-Identifier: GPL-2.0 2#include <linux/clk-provider.h> 3#include <linux/mfd/syscon.h> 4#include <linux/slab.h> 5 6#include <dt-bindings/clock/at91.h> 7 8#include "pmc.h" --- 201 unchanged lines hidden (view full) --- 210 kfree(at91rm9200_pmc); 211} 212/* 213 * While the TCB can be used as the clocksource, the system timer is most likely 214 * to be used instead. However, the pinctrl driver doesn't support probe 215 * deferring properly. Once this is fixed, this can be switched to a platform 216 * driver. 217 */ |
218CLK_OF_DECLARE_DRIVER(at91rm9200_pmc, "atmel,at91rm9200-pmc", 219 at91rm9200_pmc_setup); | 218CLK_OF_DECLARE(at91rm9200_pmc, "atmel,at91rm9200-pmc", at91rm9200_pmc_setup); |