1 /*++ 2 3 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved 4 5 This program and the accompanying materials are licensed and made available under 6 the terms and conditions of the BSD License that accompanies this distribution. 7 The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php. 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 14 15 Module Name: 16 17 SataControllerGuid.h 18 19 Abstract: 20 21 GUID for use in describing SataController 22 23 --*/ 24 #ifndef _SERIAL_ATA_CONTROLLER_GUID_H_ 25 #define _SERIAL_ATA_CONTROLLER_GUID_H_ 26 27 #ifdef ECP_FLAG 28 #define PCH_SATA_CONTROLLER_DRIVER_GUID \ 29 { \ 30 0xbb929da9, 0x68f7, 0x4035, 0xb2, 0x2c, 0xa3, 0xbb, 0x3f, 0x23, 0xda, 0x55 \ 31 } 32 #else 33 #define PCH_SATA_CONTROLLER_DRIVER_GUID \ 34 {\ 35 0xbb929da9, 0x68f7, 0x4035, 0xb2, 0x2c, 0xa3, 0xbb, 0x3f, 0x23, 0xda, 0x55 \} 36 37 #endif 38 39 extern EFI_GUID gSataControllerDriverGuid; 40 #endif 41