diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2016-04-08 11:45:07 +0200 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2016-04-13 17:26:06 +0200 |
commit | 70bff56093e02a507bc968ac7dc79ae5ee5d53a0 (patch) | |
tree | c6f1843c5fa440d1b1fb248382ec659ad6e92c0f | |
parent | e74f68e7f873cbb07e94090ec499c272db0c1603 (diff) | |
download | edk2-platforms-70bff56093e02a507bc968ac7dc79ae5ee5d53a0.tar.xz |
ArmVirtPkg/VirtFdtDxe: remove unused PL011 DT node type
This type is not used in the code, so drop the definitions.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
-rw-r--r-- | ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c index 4fca50a6b3..8fe1277b6b 100644 --- a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c +++ b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c @@ -43,7 +43,6 @@ typedef struct { typedef enum {
PropertyTypeUnknown,
PropertyTypeVirtio,
- PropertyTypeUart,
PropertyTypeXen,
} PROPERTY_TYPE;
@@ -54,7 +53,6 @@ typedef struct { STATIC CONST PROPERTY CompatibleProperties[] = {
{ PropertyTypeVirtio, "virtio,mmio" },
- { PropertyTypeUart, "arm,pl011" },
{ PropertyTypeXen, "xen,xen" },
{ PropertyTypeUnknown, "" }
};
|