treewide: Try to avoid the preprocessor with OF_REAL
[platform/kernel/u-boot.git] / drivers / misc / p2sb-uclass.c
index 98d58b3..f24857a 100644 (file)
@@ -183,16 +183,16 @@ int p2sb_set_port_id(struct udevice *dev, int portid)
 
 static int p2sb_child_post_bind(struct udevice *dev)
 {
-#if CONFIG_IS_ENABLED(OF_REAL)
-       struct p2sb_child_plat *pplat = dev_get_parent_plat(dev);
-       int ret;
-       u32 pid;
-
-       ret = dev_read_u32(dev, "intel,p2sb-port-id", &pid);
-       if (ret)
-               return ret;
-       pplat->pid = pid;
-#endif
+       if (CONFIG_IS_ENABLED(OF_REAL)) {
+               struct p2sb_child_plat *pplat = dev_get_parent_plat(dev);
+               int ret;
+               u32 pid;
+
+               ret = dev_read_u32(dev, "intel,p2sb-port-id", &pid);
+               if (ret)
+                       return ret;
+               pplat->pid = pid;
+       }
 
        return 0;
 }