]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Usb/UsbBusDxe/ComponentName.c
remove some comments introduced by tools.
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbBusDxe / ComponentName.c
CommitLineData
e237e7ae 1/** @file\r
2\r
3Copyright (c) 2004 - 2007, Intel Corporation\r
4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12Module Name:\r
13\r
14 ComponentName.c\r
15\r
16Abstract:\r
17\r
18\r
19**/\r
20\r
ed7748fe 21\r
e237e7ae 22#include <PiDxe.h>\r
23\r
ed7748fe 24\r
e237e7ae 25#include <Library/UefiLib.h>\r
26\r
27\r
28//\r
29// EFI Component Name Functions\r
30//\r
31EFI_STATUS\r
32EFIAPI\r
33UsbBusComponentNameGetDriverName (\r
34 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
35 IN CHAR8 *Language,\r
36 OUT CHAR16 **DriverName\r
37 );\r
38\r
39EFI_STATUS\r
40EFIAPI\r
41UsbBusComponentNameGetControllerName (\r
42 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
43 IN EFI_HANDLE ControllerHandle,\r
44 IN EFI_HANDLE ChildHandle, OPTIONAL\r
45 IN CHAR8 *Language,\r
46 OUT CHAR16 **ControllerName\r
47 );\r
48\r
49//\r
50// EFI Component Name Protocol\r
51//\r
52EFI_COMPONENT_NAME_PROTOCOL mUsbBusComponentName = {\r
53 UsbBusComponentNameGetDriverName,\r
54 UsbBusComponentNameGetControllerName,\r
55 "eng"\r
56};\r
57\r
58STATIC EFI_UNICODE_STRING_TABLE mUsbBusDriverNameTable[] = {\r
59 { "eng", L"Usb Bus Driver" },\r
60 { NULL , NULL }\r
61};\r
62\r
63EFI_STATUS\r
64EFIAPI\r
65UsbBusComponentNameGetDriverName (\r
66 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
67 IN CHAR8 *Language,\r
68 OUT CHAR16 **DriverName\r
69 )\r
70/*++\r
71\r
72 Routine Description:\r
73 Retrieves a Unicode string that is the user readable name of the EFI Driver.\r
74\r
75 Arguments:\r
76 This - A pointer to the EFI_COMPONENT_NAME2_PROTOCOL instance.\r
77 Language - A pointer to a three character ISO 639-2 language identifier.\r
78 This is the language of the driver name that that the caller\r
79 is requesting, and it must match one of the languages specified\r
80 in SupportedLanguages. The number of languages supported by a\r
81 driver is up to the driver writer.\r
82 DriverName - A pointer to the Unicode string to return. This Unicode string\r
83 is the name of the driver specified by This in the language\r
84 specified by Language.\r
85\r
86 Returns:\r
87 EFI_SUCCESS - The Unicode string for the Driver specified by This\r
88 and the language specified by Language was returned\r
89 in DriverName.\r
90 EFI_INVALID_PARAMETER - Language is NULL.\r
91 EFI_INVALID_PARAMETER - DriverName is NULL.\r
92 EFI_UNSUPPORTED - The driver specified by This does not support the\r
93 language specified by Language.\r
94\r
95--*/\r
96{\r
97 return LookupUnicodeString (\r
98 Language,\r
99 mUsbBusComponentName.SupportedLanguages,\r
100 mUsbBusDriverNameTable,\r
101 DriverName\r
102 );\r
103}\r
104\r
105EFI_STATUS\r
106EFIAPI\r
107UsbBusComponentNameGetControllerName (\r
108 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
109 IN EFI_HANDLE ControllerHandle,\r
110 IN EFI_HANDLE ChildHandle, OPTIONAL\r
111 IN CHAR8 *Language,\r
112 OUT CHAR16 **ControllerName\r
113 )\r
114/*++\r
115\r
116 Routine Description:\r
117 Retrieves a Unicode string that is the user readable name of the controller\r
118 that is being managed by an EFI Driver.\r
119\r
120 Arguments:\r
121 This - A pointer to the EFI_COMPONENT_NAME2_PROTOCOL instance.\r
122 ControllerHandle - The handle of a controller that the driver specified by\r
123 This is managing. This handle specifies the controller\r
124 whose name is to be returned.\r
125 ChildHandle - The handle of the child controller to retrieve the name\r
126 of. This is an optional parameter that may be NULL. It\r
127 will be NULL for device drivers. It will also be NULL\r
128 for a bus drivers that wish to retrieve the name of the\r
129 bus controller. It will not be NULL for a bus driver\r
130 that wishes to retrieve the name of a child controller.\r
131 Language - A pointer to a three character ISO 639-2 language\r
132 identifier. This is the language of the controller name\r
133 that that the caller is requesting, and it must match one\r
134 of the languages specified in SupportedLanguages. The\r
135 number of languages supported by a driver is up to the\r
136 driver writer.\r
137 ControllerName - A pointer to the Unicode string to return. This Unicode\r
138 string is the name of the controller specified by\r
139 ControllerHandle and ChildHandle in the language specified\r
140 by Language from the point of view of the driver specified\r
141 by This.\r
142\r
143 Returns:\r
144 EFI_SUCCESS - The Unicode string for the user readable name in the\r
145 language specified by Language for the driver\r
146 specified by This was returned in DriverName.\r
147 EFI_INVALID_PARAMETER - ControllerHandle is not a valid EFI_HANDLE.\r
148 EFI_INVALID_PARAMETER - ChildHandle is not NULL and it is not a valid EFI_HANDLE.\r
149 EFI_INVALID_PARAMETER - Language is NULL.\r
150 EFI_INVALID_PARAMETER - ControllerName is NULL.\r
151 EFI_UNSUPPORTED - The driver specified by This is not currently managing\r
152 the controller specified by ControllerHandle and\r
153 ChildHandle.\r
154 EFI_UNSUPPORTED - The driver specified by This does not support the\r
155 language specified by Language.\r
156\r
157--*/\r
158{\r
159 return EFI_UNSUPPORTED;\r
160}\r