Delete pmbus template

Move it to export

Change-Id: Ie11b60bc8f1421ff9df36cac8f3dd6e7b389e36c
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/include/devices.hpp b/include/devices.hpp
index 8eb87d1..c926f96 100644
--- a/include/devices.hpp
+++ b/include/devices.hpp
@@ -44,6 +44,8 @@
          {"PCA9545Mux",
           ExportTemplate("pca9545 $Address",
                          "/sys/bus/i2c/devices/i2c-$Bus/new_device")},
+         {"pmbus", ExportTemplate("pmbus $Address",
+                                  "/sys/bus/i2c/devices/i2c-$Bus/new_device")},
          {"TMP75", ExportTemplate("tmp75 $Address",
                                   "/sys/bus/i2c/devices/i2c-$Bus/new_device")
 
diff --git a/overlay_templates/Symbol.template b/overlay_templates/Symbol.template
deleted file mode 100644
index f6ec38d..0000000
--- a/overlay_templates/Symbol.template
+++ /dev/null
@@ -1,11 +0,0 @@
-/dts-v1/;
-/plugin/;
-/ {
-    compatible = "$Platform";
-    fragment@0{
-        target-path = "/__symbols__";
-        __overlay__{
-           i2c$Bus = "$Path";
-        };
-    };
-};
\ No newline at end of file
diff --git a/overlay_templates/pmbus.template b/overlay_templates/pmbus.template
deleted file mode 100644
index ce1df8e..0000000
--- a/overlay_templates/pmbus.template
+++ /dev/null
@@ -1,18 +0,0 @@
-/dts-v1/;
-/plugin/;
-/ {
-    compatible = "$Platform";
-    fragment@0{
-        target = <&i2c$Bus>;
-        __overlay__{
-            #address-cells = <1>;
-            #size-cells = <0>;
-            status = "okay";
-            $Name: pmbus@$Address {
-                compatible = "pmbus";
-                reg = <0x$Address>;
-                oemname1 = "$Name";
-            };
-        };
-    };
-};