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