1// /** @file 2// ISA Bus driver to manage the child devices attached to the ISA Host Controller. 3// 4// This driver follows UEFI driver model and layers on ISA HC protocol defined 5// in PI spec 1.2.1. It consumes the ISA Host Controller protocol produced by 6// the ISA Host Controller and installs the ISA Host Controller Service Binding 7// protocol on the ISA Host Controller's handle. 8// 9// Copyright (c) 2015, Intel Corporation. All rights reserved.<BR> 10// 11// This program and the accompanying materials 12// are licensed and made available under the terms and conditions of the BSD License 13// which accompanies this distribution. The full text of the license may be found at 14// http://opensource.org/licenses/bsd-license.php 15// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17// 18// **/ 19 20#string STR_MODULE_ABSTRACT 21#language en-US 22"ISA Bus driver to manage the child devices attached to the ISA Host Controller." 23 24#string STR_MODULE_DESCRIPTION 25#language en-US 26"This driver follows UEFI driver model and layers on ISA HC protocol defined in PI spec 1.2.1. It consumes the ISA Host Controller protocol produced by the ISA Host Controller and installs the ISA Host Controller Service Binding protocol on the ISA Host Controller's handle." 27 28 29