]> git.sur5r.net Git - u-boot/blobdiff - drivers/pci/pci_rom.c
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / drivers / pci / pci_rom.c
index 46fe5e62471207e9099526413a6e9aa032923dfa..29113f795867b11de7dd2251b6f290ad9bc4913e 100644 (file)
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) 2014 Google, Inc
  *
@@ -19,8 +20,6 @@
  * David Mosberger-Tang
  *
  * Copyright 1997 -- 1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
-
- * SPDX-License-Identifier:    GPL-2.0
  */
 
 #include <common.h>
@@ -355,8 +354,6 @@ int vbe_setup_video(struct udevice *dev, int (*int15_handler)(void))
        struct video_priv *uc_priv = dev_get_uclass_priv(dev);
        int ret;
 
-       printf("Video: ");
-
        /* If we are running from EFI or coreboot, this can't work */
        if (!ll_boot_init()) {
                printf("Not available (previous bootloader prevents it)\n");
@@ -377,7 +374,7 @@ int vbe_setup_video(struct udevice *dev, int (*int15_handler)(void))
                return ret;
        }
 
-       printf("%dx%dx%d\n", uc_priv->xsize, uc_priv->ysize,
+       printf("Video: %dx%dx%d\n", uc_priv->xsize, uc_priv->ysize,
               mode_info.vesa.bits_per_pixel);
 
        return 0;