142-mtd-spi-nor-include-mtd.h-header-for-struct-mtd_info.patch 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. From 72fc448c4c970bdbba604ab340f16080b4f3bb17 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
  3. Date: Thu, 26 Nov 2015 08:52:09 +0100
  4. Subject: [PATCH] mtd: spi-nor: include mtd.h header for struct mtd_info
  5. definition
  6. MIME-Version: 1.0
  7. Content-Type: text/plain; charset=UTF-8
  8. Content-Transfer-Encoding: 8bit
  9. So far struct spi_nor was using just a pointer to struct mtd_info so it
  10. wasn't needed to have it fully defined there. After recent change we
  11. embed whole struct so we need to include a proper header.
  12. Fixes: 1976367173a4 ("mtd: spi-nor: embed struct mtd_info within struct spi_nor")
  13. Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
  14. ---
  15. include/linux/mtd/spi-nor.h | 3 +--
  16. 1 file changed, 1 insertion(+), 2 deletions(-)
  17. --- a/include/linux/mtd/spi-nor.h
  18. +++ b/include/linux/mtd/spi-nor.h
  19. @@ -12,6 +12,7 @@
  20. #include <linux/bitops.h>
  21. #include <linux/mtd/cfi.h>
  22. +#include <linux/mtd/mtd.h>
  23. /*
  24. * Manufacturer IDs
  25. @@ -117,8 +118,6 @@ enum spi_nor_option_flags {
  26. SNOR_F_USE_FSR = BIT(0),
  27. };
  28. -struct mtd_info;
  29. -
  30. /**
  31. * struct spi_nor - Structure for defining a the SPI NOR layer
  32. * @mtd: point to a mtd_info structure