[PATCH 1/1] drivers/amba/bus.c: Don't perform extra matching when any one fails

From: Kautuk Consul
Date: Thu Sep 01 2011 - 13:55:44 EST


If any one operation fails, then r anyways gets set to 0, which will
cause the device to not match the find_data.

Signed-off-by: Kautuk Consul <consul.kautuk@xxxxxxxxx>
---
drivers/amba/bus.c | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/amba/bus.c b/drivers/amba/bus.c
index d74926e..af2e0a1 100644
--- a/drivers/amba/bus.c
+++ b/drivers/amba/bus.c
@@ -699,10 +699,12 @@ static int amba_find_match(struct device *dev, void *data)
int r;

r = (pcdev->periphid & d->mask) == d->id;
- if (d->parent)
- r &= d->parent == dev->parent;
- if (d->busid)
- r &= strcmp(dev_name(dev), d->busid) == 0;
+ if (r) {
+ if (d->parent)
+ r &= d->parent == dev->parent;
+ if (r && d->busid)
+ r &= strcmp(dev_name(dev), d->busid) == 0;
+ }

if (r) {
get_device(dev);
--
1.7.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/