Date: Sun, 27 Feb 2022 16:47:57 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 60de142cfc6c - main - libefivar: Change OPTIONAL keyword usage style Message-ID: <202202271647.21RGlvBm037128@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=60de142cfc6cd444969b4ce11eff2f94ff4627e7 commit 60de142cfc6cd444969b4ce11eff2f94ff4627e7 Author: Jose Luis Duran <jlduran@gmail.com> AuthorDate: 2022-02-25 14:14:57 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2022-02-27 16:13:47 +0000 libefivar: Change OPTIONAL keyword usage style Update all use of ', OPTIONAL' to ' OPTIONAL,' for function params. Upstream Bug: https://bugzilla.tianocore.org/show_bug.cgi?id=3760 Obtained from: https://github.com/tianocore/edk2/commit/d0e2f8232a26453fc0191629ed44ff2a46ea073e Pull Request: https://github.com/freebsd/freebsd-src/pull/581 --- lib/libefivar/uefi-dplib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libefivar/uefi-dplib.h b/lib/libefivar/uefi-dplib.h index 5a40ad481afd..3382cccc6392 100644 --- a/lib/libefivar/uefi-dplib.h +++ b/lib/libefivar/uefi-dplib.h @@ -247,7 +247,7 @@ UefiDevicePathLibDuplicateDevicePath ( EFI_DEVICE_PATH_PROTOCOL * EFIAPI UefiDevicePathLibAppendDevicePath ( - IN CONST EFI_DEVICE_PATH_PROTOCOL *FirstDevicePath, OPTIONAL + IN CONST EFI_DEVICE_PATH_PROTOCOL *FirstDevicePath OPTIONAL, IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL ); @@ -282,7 +282,7 @@ UefiDevicePathLibAppendDevicePath ( EFI_DEVICE_PATH_PROTOCOL * EFIAPI UefiDevicePathLibAppendDevicePathNode ( - IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath, OPTIONAL + IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath OPTIONAL, IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathNode OPTIONAL ); @@ -312,7 +312,7 @@ UefiDevicePathLibAppendDevicePathNode ( EFI_DEVICE_PATH_PROTOCOL * EFIAPI UefiDevicePathLibAppendDevicePathInstance ( - IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath, OPTIONAL + IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath OPTIONAL, IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL );
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202202271647.21RGlvBm037128>