diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-09-05 12:18:07 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-06 13:39:01 +0000 |
commit | 3502566261989e746abccd2de421263084fd67aa (patch) | |
tree | 3d19738d3c51db99cfc651d98adec93cf243f54b /src | |
parent | d9f5d90ada6a9c3efde220160dddaca42421be6f (diff) |
mb/**/gma-mainboard.ads: Use lowercase for `others`
These two files are the only places where the `others` keyword is
capitalised. Use lowercase for consistency with the rest of the tree.
Change-Id: I6b785e28d1d00a11b802a44348a7132ceb6b599d
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57399
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/51nb/x210/gma-mainboard.ads | 2 | ||||
-rw-r--r-- | src/mainboard/asus/p8x7x-series/variants/p8z77-v_lx2/gma-mainboard.ads | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/51nb/x210/gma-mainboard.ads b/src/mainboard/51nb/x210/gma-mainboard.ads index 6fb2080771..d65c25d673 100644 --- a/src/mainboard/51nb/x210/gma-mainboard.ads +++ b/src/mainboard/51nb/x210/gma-mainboard.ads @@ -12,6 +12,6 @@ private package GMA.Mainboard is (DP1, DP2, eDP, - Others => Disabled); + others => Disabled); end GMA.Mainboard; diff --git a/src/mainboard/asus/p8x7x-series/variants/p8z77-v_lx2/gma-mainboard.ads b/src/mainboard/asus/p8x7x-series/variants/p8z77-v_lx2/gma-mainboard.ads index aa8a70d156..b5bfff181d 100644 --- a/src/mainboard/asus/p8x7x-series/variants/p8z77-v_lx2/gma-mainboard.ads +++ b/src/mainboard/asus/p8x7x-series/variants/p8z77-v_lx2/gma-mainboard.ads @@ -11,6 +11,6 @@ private package GMA.Mainboard is ports : constant Port_List := (HDMI3, Analog, - Others => Disabled); + others => Disabled); end GMA.Mainboard; |