]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Pci/PciBus/Dxe/PciRomTable.h
Remove all blanks lines to avoid build errors.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / PciBus / Dxe / PciRomTable.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 PciRomTable.h
15
16 Abstract:
17
18 Option Rom Support for PCI Bus Driver
19
20 Revision History
21
22 --*/
23
24 #ifndef _EFI_PCI_ROM_TABLE_H
25 #define _EFI_PCI_ROM_TABLE_H
26
27 VOID
28 PciRomAddImageMapping (
29 IN EFI_HANDLE ImageHandle,
30 IN UINTN Seg,
31 IN UINT8 Bus,
32 IN UINT8 Dev,
33 IN UINT8 Func,
34 IN UINT64 RomAddress,
35 IN UINT64 RomLength
36 )
37 /*++
38
39 Routine Description:
40
41 TODO: Add function description
42
43 Arguments:
44
45 ImageHandle - TODO: add argument description
46 Seg - TODO: add argument description
47 Bus - TODO: add argument description
48 Dev - TODO: add argument description
49 Func - TODO: add argument description
50 RomAddress - TODO: add argument description
51 RomLength - TODO: add argument description
52
53 Returns:
54
55 TODO: add return values
56
57 --*/
58 ;
59
60
61 EFI_STATUS
62 PciRomGetRomResourceFromPciOptionRomTable (
63 IN EFI_DRIVER_BINDING_PROTOCOL *This,
64 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *PciRootBridgeIo,
65 PCI_IO_DEVICE *PciIoDevice
66 )
67 /*++
68
69 Routine Description:
70
71 TODO: Add function description
72
73 Arguments:
74
75 This - TODO: add argument description
76 PciRootBridgeIo - TODO: add argument description
77 PciIoDevice - TODO: add argument description
78
79 Returns:
80
81 TODO: add return values
82
83 --*/
84 ;
85
86 EFI_STATUS
87 PciRomGetImageMapping (
88 PCI_IO_DEVICE *PciIoDevice
89 )
90 /*++
91
92 Routine Description:
93
94 TODO: Add function description
95
96 Arguments:
97
98 PciIoDevice - TODO: add argument description
99
100 Returns:
101
102 TODO: add return values
103
104 --*/
105 ;
106
107 #endif