Rename EEPROM sensor type.

Sensor type name cannot start with digits. This is because entity
manager will create an Configuration interface based on the type, which
is an illegal interface name.

Signed-off-by: Hao Jiang <jianghao@google.com>
Change-Id: I8fbcf45e6f3963a68dd8eba666924263f074bdbd
diff --git a/include/devices.hpp b/include/devices.hpp
index c375b1c..50fbe63 100644
--- a/include/devices.hpp
+++ b/include/devices.hpp
@@ -39,10 +39,12 @@
 
 const boost::container::flat_map<const char*, ExportTemplate, CmpStr>
     exportTemplates{
-        {{"24C02", ExportTemplate("24c02 $Address",
-                                  "/sys/bus/i2c/devices/i2c-$Bus/new_device")},
-         {"24C64", ExportTemplate("24c64 $Address",
-                                  "/sys/bus/i2c/devices/i2c-$Bus/new_device")},
+        {{"EEPROM_24C02",
+          ExportTemplate("24c02 $Address",
+                         "/sys/bus/i2c/devices/i2c-$Bus/new_device")},
+         {"EEPROM_24C64",
+          ExportTemplate("24c64 $Address",
+                         "/sys/bus/i2c/devices/i2c-$Bus/new_device")},
          {"ADM1266",
           ExportTemplate("adm1266 $Address",
                          "/sys/bus/i2c/devices/i2c-$Bus/new_device")},