summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/hallx3/alpha/flashdrv.c
blob: 43638aa0263224469d2ec01fabaaf15e0825f79d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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 Am29F400_Initialize(PUCHAR);

PFLASH_DRIVER (*FlashDriverList[])(PUCHAR) = {
    Am29F400_Initialize,
    NULL};