[PATCH 2/6] ARM: add Highbank core platform support
From: Shawn Guo <hidden>
Date: 2011-08-22 08:35:26
From: Shawn Guo <hidden>
Date: 2011-08-22 08:35:26
On Tue, Aug 16, 2011 at 03:34:54PM -0500, Rob Herring wrote:
From: Rob Herring <redacted> This adds basic support for the Calxeda Highbank platform. Signed-off-by: Rob Herring <redacted> ---
[...]
+void highbank_init_irq(void)
+{
+ struct device_node *node;
+ struct of_intc_desc desc;
+ int n = 0;
+
+ memset(&desc, 0, sizeof(desc));
+ desc.controller = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-gic");
+ gic_of_init(&desc);
+ node = desc.controller;
+ for_each_child_of_node(node, desc.controller) {
+ gic_of_ppi_init(&desc);
+ }
+I failed to find the implementation of gic_of_ppi_init() in your patch series below. [RFC PATCH 0/3] Yet another GIC OF binding series Also one nit: the braces seem redundant. -- Regards, Shawn