X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FInclude%2FLibrary%2FResourcePublicationLib.h;h=cd51c7f65f018f313e68253aeaeacb3f7754f727;hb=2b27b557277a52998e2387333cc834e09a887c18;hp=ccd3eaed2583a9628eeb2b5ca6cfdc194eeffdd4;hpb=24e25d11c0460dfb39fade685375c0e58cbcb40e;p=mirror_edk2.git diff --git a/MdePkg/Include/Library/ResourcePublicationLib.h b/MdePkg/Include/Library/ResourcePublicationLib.h index ccd3eaed25..cd51c7f65f 100644 --- a/MdePkg/Include/Library/ResourcePublicationLib.h +++ b/MdePkg/Include/Library/ResourcePublicationLib.h @@ -1,16 +1,14 @@ /** @file - Declare presence of resources in the platform + Provides a service to publish discovered system resources. - Copyright (c) 2006, Intel Corporation - All rights reserved. This program and the accompanying materials - are licensed and made available under the terms and conditions of the BSD License - which accompanies this distribution. The full text of the license may be found at - http://opensource.org/licenses/bsd-license.php +Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.
+This program and the accompanying materials +are licensed and made available under the terms and conditions of the BSD License +which accompanies this distribution. The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php - THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - Module Name: ResourcePublicationLib.h +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ @@ -18,13 +16,14 @@ #define __RESOURCE_PUBLICATION_LIB__ /** - Declares the presence of permanent system memory in the platform. Declares that the system memory buffer specified by MemoryBegin and MemoryLength as permanent memory that may be used for general purpose use by software. The amount of memory available to software may be less than MemoryLength - if published memory has alignment restrictions. + if published memory has alignment restrictions. + If MemoryLength is 0, then ASSERT(). + If MemoryLength is greater than (MAX_ADDRESS - MemoryBegin + 1), then ASSERT(). @param MemoryBegin The start address of the memory being declared. @param MemoryLength The number of bytes of memory being declared. @@ -38,7 +37,6 @@ EFIAPI PublishSystemMemory ( IN PHYSICAL_ADDRESS MemoryBegin, IN UINT64 MemoryLength - ) -; + ); #endif