performance: fixup missing const reference in zone

Zone::getSensor is passed directly to the Sensor Manager getSensor which
takes the parameter by reference.  Make it use an explicit const
reference at both layers.

Change-Id: I4895ea2935d20b73b88d33972e44b9ac557cd988
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/pid/zone.cpp b/pid/zone.cpp
index 0c9718a..b1da7ec 100644
--- a/pid/zone.cpp
+++ b/pid/zone.cpp
@@ -324,7 +324,7 @@
     }
 }
 
-Sensor* PIDZone::getSensor(std::string name)
+Sensor* PIDZone::getSensor(const std::string& name)
 {
     return _mgr.getSensor(name);
 }