Files
system76-edk2/ArmPlatformPkg/Include/Library/PL011UartClockLib.h
Pierre Gondois 5a5440d0dc ArmPlatformPkg: Fix Ecc error 8001
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>
2021-04-15 19:24:14 +00:00

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