diff options
author | Brian Norris <computersforpeace@gmail.com> | 2015-08-13 15:46:05 -0700 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-09-02 14:11:40 -0700 |
commit | 1976367173a47f801c67b5f456922d79c60d0d42 (patch) | |
tree | 55a67d031aa49b5a072201522b2e2153a76b62ad /include/linux/mtd | |
parent | a39f1d5e4303f535840a44eee87326fd9743de7c (diff) |
mtd: spi-nor: embed struct mtd_info within struct spi_nor
This reflects the proper layering, so let's do it.
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Tested-by: Joachim Eastwood <manabian@gmail.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/spi-nor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mtd/spi-nor.h b/include/linux/mtd/spi-nor.h index 85a24baea093..495433d3f56d 100644 --- a/include/linux/mtd/spi-nor.h +++ b/include/linux/mtd/spi-nor.h @@ -162,7 +162,7 @@ struct mtd_info; * @priv: the private data */ struct spi_nor { - struct mtd_info *mtd; + struct mtd_info mtd; struct mutex lock; struct device *dev; u32 page_size; |