dt-compat.c (22a1dfe93bf496d03cb1d76b1fbd23a7ff4a062c) | dt-compat.c (b4c115c76184f2c56a295579161652fd5eb2dcc1) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2#include <linux/clk-provider.h> 3#include <linux/clk/at91_pmc.h> 4#include <linux/of.h> 5#include <linux/mfd/syscon.h> 6#include <linux/regmap.h> 7#include <linux/slab.h> 8 --- 449 unchanged lines hidden (view full) --- 458 "atmel,clk-output-range", 459 &range); 460 461 hw = at91_clk_register_sam9x5_peripheral(regmap, 462 &pmc_pcr_lock, 463 &dt_pcr_layout, 464 name, 465 parent_name, | 1// SPDX-License-Identifier: GPL-2.0 2#include <linux/clk-provider.h> 3#include <linux/clk/at91_pmc.h> 4#include <linux/of.h> 5#include <linux/mfd/syscon.h> 6#include <linux/regmap.h> 7#include <linux/slab.h> 8 --- 449 unchanged lines hidden (view full) --- 458 "atmel,clk-output-range", 459 &range); 460 461 hw = at91_clk_register_sam9x5_peripheral(regmap, 462 &pmc_pcr_lock, 463 &dt_pcr_layout, 464 name, 465 parent_name, |
466 id, &range); | 466 id, &range, 467 INT_MIN); |
467 } 468 469 if (IS_ERR(hw)) 470 continue; 471 472 of_clk_add_hw_provider(periphclknp, of_clk_hw_simple_get, hw); 473 } 474} --- 500 unchanged lines hidden --- | 468 } 469 470 if (IS_ERR(hw)) 471 continue; 472 473 of_clk_add_hw_provider(periphclknp, of_clk_hw_simple_get, hw); 474 } 475} --- 500 unchanged lines hidden --- |