This patch fixes the following Ecc reported error: File header doesn't exist File header comment missing the ""Copyright"" Even though a copyright is present in the header file, the leading '*' char prevents the Ecc tool from detecting it. According to the edk2 coding specifcation, section 5.2.3 "File Heading", there should not be leading '*' char. Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
26 lines
328 B
C
26 lines
328 B
C
/** @file
|
|
|
|
Copyright 2018 NXP
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __PL011UARTCLOCKLIB_H__
|
|
#define __PL011UARTCLOCKLIB_H__
|
|
|
|
/**
|
|
|
|
Return baud clock frequency of PL011.
|
|
|
|
@return return frequency of PL011 in Hz
|
|
|
|
**/
|
|
UINT32
|
|
EFIAPI
|
|
PL011UartClockGetFreq (
|
|
VOID
|
|
);
|
|
|
|
#endif
|