src/flash/nor: redirect fespi to nuspi for hbird and hbirdv2 SoC
Change-Id: I3d7d58971e7739b5e1104c9595952005c840a5dc Signed-off-by: Huaqi Fang <578567190@qq.com>
This commit is contained in:
parent
aa75e393d2
commit
285f810ce3
|
@ -8,6 +8,7 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The list of built-in flash drivers.
|
* The list of built-in flash drivers.
|
||||||
|
@ -91,8 +92,14 @@ static const struct flash_driver * const flash_drivers[] = {
|
||||||
|
|
||||||
const struct flash_driver *flash_driver_find_by_name(const char *name)
|
const struct flash_driver *flash_driver_find_by_name(const char *name)
|
||||||
{
|
{
|
||||||
|
char *flash_name = name;
|
||||||
|
if (strcmp(flash_name, "fespi") == 0) {
|
||||||
|
/* Nuclei added: redirect fespi for old hbird/hbirdv2 SPI driver to nuspi driver */
|
||||||
|
flash_name = "nuspi";
|
||||||
|
}
|
||||||
|
|
||||||
for (unsigned int i = 0; flash_drivers[i]; i++) {
|
for (unsigned int i = 0; flash_drivers[i]; i++) {
|
||||||
if (strcmp(name, flash_drivers[i]->name) == 0)
|
if (strcmp(flash_name, flash_drivers[i]->name) == 0)
|
||||||
return flash_drivers[i];
|
return flash_drivers[i];
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in New Issue