[PATCH v2] arm/tegra: emc: device tree support
From: Olof Johansson <hidden>
Date: 2012-01-06 01:26:05
Also in:
linux-tegra
On Thu, Jan 5, 2012 at 2:35 PM, Stephen Warren [off-list ref] wrote:
Olof Johansson wrote at Wednesday, January 04, 2012 11:02 PM:quoted
Add device tree support to the emc driver, filling in the platform data based on the DT bindings. Changes since v1: * Unmangled some messed up patch squashes, moving changes to earlier patches * Flipped an of_property_read_u32 return value test * Clarified clock settings message on case where no table is provided Signed-off-by: Olof Johansson <redacted>...quoted
diff --git a/arch/arm/mach-tegra/tegra2_emc.c b/arch/arm/mach-tegra/tegra2_emc.c...quoted
+static struct tegra_emc_pdata __devinit *tegra_emc_fill_pdata(struct platform_device *pdev)...quoted
+ ? ? pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); + ? ? pdata->tables = devm_kzalloc(&pdev->dev, + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?sizeof(struct tegra_emc_table), + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?GFP_KERNEL);You could convert that one to sizeof(*pdata->tables) too, although feel free to ignore this picky comment, or fix it up when you apply the change. Otherwise, Acked-by: Stephen Warren <redacted>
Done, thanks. -Olof