]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/ComponentName.h
f7c06e7c0e63c02a9e0c9245a54c7160ee18c18a
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaFloppyDxe / ComponentName.h
1 /*++
2
3 Copyright (c) 2006 - 2007, Intel Corporation<BR>
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 ComponentName.h
15
16 Abstract:
17
18 Revision History:
19
20 --*/
21
22 #ifndef _ISA_FLOPPY_COMPONENT_NAME_H
23 #define _ISA_FLOPPY_COMPONENT_NAME_H
24
25 #define FLOPPY_DRIVE_NAME L"ISA Floppy Drive # "
26 #define FLOPPY_DRIVE_NAME_ASCII_LEN (sizeof ("ISA Floppy Drive # ") - 1)
27 #define ADD_FLOPPY_NAME(x) AddName ((x))
28
29 extern EFI_COMPONENT_NAME_PROTOCOL gIsaFloppyComponentName;
30
31 //
32 // EFI Component Name Functions
33 //
34 EFI_STATUS
35 EFIAPI
36 IsaFloppyComponentNameGetDriverName (
37 IN EFI_COMPONENT_NAME_PROTOCOL *This,
38 IN CHAR8 *Language,
39 OUT CHAR16 **DriverName
40 )
41 /*++
42
43 Routine Description:
44
45 GC_TODO: Add function description
46
47 Arguments:
48
49 This - GC_TODO: add argument description
50 Language - GC_TODO: add argument description
51 DriverName - GC_TODO: add argument description
52
53 Returns:
54
55 GC_TODO: add return values
56
57 --*/
58 ;
59
60 EFI_STATUS
61 EFIAPI
62 IsaFloppyComponentNameGetControllerName (
63 IN EFI_COMPONENT_NAME_PROTOCOL *This,
64 IN EFI_HANDLE ControllerHandle,
65 IN EFI_HANDLE ChildHandle OPTIONAL,
66 IN CHAR8 *Language,
67 OUT CHAR16 **ControllerName
68 )
69 /*++
70
71 Routine Description:
72
73 GC_TODO: Add function description
74
75 Arguments:
76
77 This - GC_TODO: add argument description
78 ControllerHandle - GC_TODO: add argument description
79 ChildHandle - GC_TODO: add argument description
80 Language - GC_TODO: add argument description
81 ControllerName - GC_TODO: add argument description
82
83 Returns:
84
85 GC_TODO: add return values
86
87 --*/
88 ;
89
90 VOID
91 AddName (
92 IN FDC_BLK_IO_DEV *FdcDev
93 )
94 /*++
95
96 Routine Description:
97
98 GC_TODO: Add function description
99
100 Arguments:
101
102 FdcDev - GC_TODO: add argument description
103
104 Returns:
105
106 GC_TODO: add return values
107
108 --*/
109 ;
110
111 #endif