mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
643 B
42 lines
643 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ltfirm.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the firmware init definitions.
|
|
|
|
Author:
|
|
|
|
Stephen Hou ([email protected])
|
|
Nikhil Kamkolkar ([email protected])
|
|
|
|
Revision History:
|
|
19 Jun 1992 Initial Version ([email protected])
|
|
|
|
Notes: Tab stop: 4
|
|
--*/
|
|
|
|
#ifndef _LTFIRM_H_
|
|
#define _LTFIRM_H_
|
|
|
|
BOOLEAN
|
|
LtFirmInitialize(
|
|
IN PLT_ADAPTER Adapter,
|
|
IN UCHAR SuggestedNodeId);
|
|
|
|
#ifdef LTFIRM_H_LOCALS
|
|
#define MAX_READ_RETRY_COUNT 500
|
|
#define MAX_START_RETRY_COUNT 500
|
|
|
|
#define LT_FIRM_INIT_STALL_TIME 10000 // 10ms
|
|
|
|
#endif // LTFIRM_H_LOCALS
|
|
|
|
|
|
#endif // _LTFIRM_H_
|
|
|