of: Increase MAX_PHANDLE_ARGS
authorAndreas Herrmann <andreas.herrmann@calxeda.com>
Fri, 17 Jan 2014 11:08:30 +0000 (12:08 +0100)
committerGrant Likely <grant.likely@linaro.org>
Wed, 5 Feb 2014 12:07:31 +0000 (12:07 +0000)
arm-smmu driver uses of_parse_phandle_with_args when parsing DT
information to determine stream IDs for a master device.
Thus the number of stream IDs per master device is bound by
MAX_PHANDLE_ARGS.

To support Calxeda ECX-2000 hardware arm-smmu driver requires a
slightly higher value for MAX_PHANDLE_ARGS as this hardware has 10
stream IDs for one master device.

Increasing it to 16 seems a reasonable choice.

Cc: Grant Likely <grant.likely@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: devicetree@vger.kernel.org
Cc: Andreas Herrmann <herrmann.der.user@googlemail.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Andreas Herrmann <andreas.herrmann@calxeda.com>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
include/linux/of.h

index 3d0593943f47b8c19f65799594cb4212f45aa29f..0ea516ed22c0b07fa67bdf3c8a8e41f8b453ea39 100644 (file)
@@ -67,7 +67,7 @@ struct device_node {
 #endif
 };
 
-#define MAX_PHANDLE_ARGS 8
+#define MAX_PHANDLE_ARGS 16
 struct of_phandle_args {
        struct device_node *np;
        int args_count;
This page took 0.027435 seconds and 5 git commands to generate.