]> git.sur5r.net Git - u-boot/blobdiff - drivers/pch/pch-uclass.c
mtd: nand: mxs_nand_spl: add mxs_flash_full_ident
[u-boot] / drivers / pch / pch-uclass.c
index 7216660a24c773e5910e2c3658a9d540d74135fc..831b283d7b47df7d9de437d12f114f0d52064d37 100644 (file)
@@ -1,16 +1,12 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright (c) 2015 Google, Inc
  * Written by Simon Glass <sjg@chromium.org>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
 #include <dm.h>
 #include <pch.h>
-#include <dm/root.h>
-
-DECLARE_GLOBAL_DATA_PTR;
 
 int pch_get_spi_base(struct udevice *dev, ulong *sbasep)
 {
@@ -55,20 +51,8 @@ int pch_get_io_base(struct udevice *dev, u32 *iobasep)
        return ops->get_io_base(dev, iobasep);
 }
 
-static int pch_uclass_post_bind(struct udevice *bus)
-{
-       /*
-        * Scan the device tree for devices
-        *
-        * Before relocation, only bind devices marked for pre-relocation
-        * use.
-        */
-       return dm_scan_fdt_node(bus, gd->fdt_blob, bus->of_offset,
-                               gd->flags & GD_FLG_RELOC ? false : true);
-}
-
 UCLASS_DRIVER(pch) = {
        .id             = UCLASS_PCH,
        .name           = "pch",
-       .post_bind      = pch_uclass_post_bind,
+       .post_bind      = dm_scan_fdt_dev,
 };