mtd: spi: Add 'struct spi_flash {' to the code
authorSimon Glass <sjg@chromium.org>
Wed, 25 Sep 2019 14:11:13 +0000 (08:11 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Tue, 8 Oct 2019 05:51:00 +0000 (13:51 +0800)
At present spi_flash is defined to be spi_nor which is confusing since it
is not possible to find the 'spi_flash' by normal text search. Add a
comment to help with this.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
include/linux/mtd/spi-nor.h

index 709b49d3936da1cc0858c1d42afd6736cf01e2f0..f9964a7664568615831b839d2f9e850c44b84ff8 100644 (file)
@@ -246,7 +246,13 @@ enum spi_nor_option_flags {
  */
 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 {
+ *     Defined below (keep this text to enable searching for spi_flash decl)
+ * }
+ */
 #define spi_flash spi_nor
 
 /**