mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
spi: Tweak a few strange SPI NOR features for of-platdata
The #define of one struct to another has been around for a while. It confuses dtoc and makes it think that struct spi_flash does not exist. Make a few changes to improve things while we wait for migration to be completed: - Move the 'struct spi_flash' to column 1 so dtoc scans it - Remove the #define when compiling dt-platdata.c - Update the strange mtd_get/set_of_node() functions - Use struct spi_nor in the drivers, so dtoc sees the correct struct Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e2a7cfe9d5
commit
a1a8a63385
3 changed files with 5 additions and 3 deletions
|
@ -100,5 +100,5 @@ UCLASS_DRIVER(spi_flash) = {
|
||||||
.id = UCLASS_SPI_FLASH,
|
.id = UCLASS_SPI_FLASH,
|
||||||
.name = "spi_flash",
|
.name = "spi_flash",
|
||||||
.post_bind = spi_flash_post_bind,
|
.post_bind = spi_flash_post_bind,
|
||||||
.per_device_auto = sizeof(struct spi_flash),
|
.per_device_auto = sizeof(struct spi_nor),
|
||||||
};
|
};
|
||||||
|
|
|
@ -166,7 +166,7 @@ U_BOOT_DRIVER(jedec_spi_nor) = {
|
||||||
.of_match = spi_flash_std_ids,
|
.of_match = spi_flash_std_ids,
|
||||||
.probe = spi_flash_std_probe,
|
.probe = spi_flash_std_probe,
|
||||||
.remove = spi_flash_std_remove,
|
.remove = spi_flash_std_remove,
|
||||||
.priv_auto = sizeof(struct spi_flash),
|
.priv_auto = sizeof(struct spi_nor),
|
||||||
.ops = &spi_flash_std_ops,
|
.ops = &spi_flash_std_ops,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -258,11 +258,13 @@ struct flash_info;
|
||||||
/*
|
/*
|
||||||
* TODO: Remove, once all users of spi_flash interface are moved to MTD
|
* TODO: Remove, once all users of spi_flash interface are moved to MTD
|
||||||
*
|
*
|
||||||
* struct spi_flash {
|
struct spi_flash {
|
||||||
* Defined below (keep this text to enable searching for spi_flash decl)
|
* Defined below (keep this text to enable searching for spi_flash decl)
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
|
#ifndef DT_PLATDATA_C
|
||||||
#define spi_flash spi_nor
|
#define spi_flash spi_nor
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* struct spi_nor - Structure for defining a the SPI NOR layer
|
* struct spi_nor - Structure for defining a the SPI NOR layer
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue