summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/haleb164/alpha/flashdrv.c
blob: 20b91fc591bfdf35358c0325f8db0a967943b90f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "halp.h"
#include "flash8k.h"

//
// Flash Drivers
//
//  extern declarations of each known flash driver's Initialize() funcion
//  are needed here for addition into the list of known drivers.
//
//  FlashDriverList is an array of driver Initialize() functions used to
//  identify the flash device present in the system.  The last entry
//  in FlashDriverList must be NULL.
//
extern PFLASH_DRIVER I28F008SA_Initialize(PUCHAR);
extern PFLASH_DRIVER Am29F080_Initialize(PUCHAR);
extern PFLASH_DRIVER Am29F040_Initialize(PUCHAR);

PFLASH_DRIVER (*FlashDriverList[])(PUCHAR) = {
    I28F008SA_Initialize,
    Am29F080_Initialize,
    Am29F040_Initialize,
    NULL};