]> git.sur5r.net Git - u-boot/blobdiff - arch/sandbox/cpu/spl.c
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot] / arch / sandbox / cpu / spl.c
index 7cc76d4cf1f344ad1e897879a9784dabb2920fbc..42c149a49815198f7e1f3357851044d3c12e9c9a 100644 (file)
@@ -1,6 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright (c) 2016 Google, Inc
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
@@ -44,16 +44,5 @@ SPL_LOAD_IMAGE_METHOD("sandbox", 0, BOOT_DEVICE_BOARD, spl_board_load_image);
 
 void spl_board_init(void)
 {
-       struct udevice *dev;
-
        preloader_console_init();
-
-       /*
-       * Scan all the devices so that we can output their platform data. See
-       * sandbox_spl_probe().
-       */
-       for (uclass_first_device(UCLASS_MISC, &dev);
-       dev;
-       uclass_next_device(&dev))
-               ;
 }