Prevent reinitialization of ADM1293/INA219 devices

The ADM1293 and INA219 device drivers do not create 'hwmon'
subdirectories. The createsHWMon flag in the ExportTemplate structure
must be false for any device which fails to have a 'hwmon'
subdirectory created by the driver.

Tested:
ADM1275 style devices correctly enumerate on the first attempt without
performing multiple 'delete_device' operations.
The same is true for INA219 devices.

Change-Id: I97b9c0606b0167e8e233250f582b9b4535c1bd9a
Signed-off-by: Johnathan Mantey <johnathanx.mantey@intel.com>
diff --git a/include/devices.hpp b/include/devices.hpp
index 7d50614..10e7ad1 100644
--- a/include/devices.hpp
+++ b/include/devices.hpp
@@ -241,10 +241,10 @@
                          "new_device", "delete_device", true)},
          {"ADM1293",
           ExportTemplate("adm1293 $Address", "/sys/bus/i2c/devices/i2c-$Bus",
-                         "new_device", "delete_device", true)},
+                         "new_device", "delete_device", false)},
          {"INA219",
           ExportTemplate("ina219 $Address", "/sys/bus/i2c/devices/i2c-$Bus",
-                         "new_device", "delete_device", true)},
+                         "new_device", "delete_device", false)},
          {"RAA229126",
           ExportTemplate("raa229126 $Address", "/sys/bus/i2c/devices/i2c-$Bus",
                          "new_device", "delete_device", true)},