diff options
author | Kyle Moffett <Kyle.D.Moffett@boeing.com> | 2011-12-02 01:28:05 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-12-06 21:43:08 -0500 |
commit | c579bc766a84a57c31d7b41276ffa9545a34ee1b (patch) | |
tree | c7995df42e9ca25dce086fbaf668cfac9771dc43 /arch/powerpc/sysdev/mpic.c | |
parent | e62b760179506531bf6d0c522c0def0f84847eb7 (diff) |
powerpc/mpic: Put "pic-no-reset" test back into the MPIC code
There's not really any reason to have this one-liner in a separate
static inline function, given that all the other similar tests are
already in the alloc_mpic() code.
Signed-off-by: Kyle Moffett <Kyle.D.Moffett@boeing.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/mpic.c')
-rw-r--r-- | arch/powerpc/sysdev/mpic.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c index 1e7584bb62c0..3240bbabc2f9 100644 --- a/arch/powerpc/sysdev/mpic.c +++ b/arch/powerpc/sysdev/mpic.c | |||
@@ -1118,11 +1118,6 @@ static struct irq_host_ops mpic_host_ops = { | |||
1118 | .xlate = mpic_host_xlate, | 1118 | .xlate = mpic_host_xlate, |
1119 | }; | 1119 | }; |
1120 | 1120 | ||
1121 | static int mpic_reset_prohibited(struct device_node *node) | ||
1122 | { | ||
1123 | return node && of_get_property(node, "pic-no-reset", NULL); | ||
1124 | } | ||
1125 | |||
1126 | /* | 1121 | /* |
1127 | * Exported functions | 1122 | * Exported functions |
1128 | */ | 1123 | */ |
@@ -1272,7 +1267,7 @@ struct mpic * __init mpic_alloc(struct device_node *node, | |||
1272 | /* When using a device-node, reset requests are only honored if the MPIC | 1267 | /* When using a device-node, reset requests are only honored if the MPIC |
1273 | * is allowed to reset. | 1268 | * is allowed to reset. |
1274 | */ | 1269 | */ |
1275 | if (mpic_reset_prohibited(node)) | 1270 | if (of_get_property(node, "pic-no-reset", NULL)) |
1276 | mpic->flags |= MPIC_NO_RESET; | 1271 | mpic->flags |= MPIC_NO_RESET; |
1277 | 1272 | ||
1278 | if ((flags & MPIC_WANTS_RESET) && !(mpic->flags & MPIC_NO_RESET)) { | 1273 | if ((flags & MPIC_WANTS_RESET) && !(mpic->flags & MPIC_NO_RESET)) { |