aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmc/card.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mmc/card.h')
-rw-r--r--include/linux/mmc/card.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h
index 1684d92a8015..415f2db414e1 100644
--- a/include/linux/mmc/card.h
+++ b/include/linux/mmc/card.h
@@ -12,7 +12,6 @@
12 12
13#include <linux/mmc/core.h> 13#include <linux/mmc/core.h>
14#include <linux/mod_devicetable.h> 14#include <linux/mod_devicetable.h>
15#include <linux/genhd.h>
16 15
17struct mmc_cid { 16struct mmc_cid {
18 unsigned int manfid; 17 unsigned int manfid;
@@ -175,6 +174,7 @@ struct sdio_func_tuple;
175#define MMC_NUM_BOOT_PARTITION 2 174#define MMC_NUM_BOOT_PARTITION 2
176#define MMC_NUM_GP_PARTITION 4 175#define MMC_NUM_GP_PARTITION 4
177#define MMC_NUM_PHY_PARTITION 6 176#define MMC_NUM_PHY_PARTITION 6
177#define MAX_MMC_PART_NAME_LEN 20
178 178
179/* 179/*
180 * MMC Physical partitions 180 * MMC Physical partitions
@@ -182,7 +182,7 @@ struct sdio_func_tuple;
182struct mmc_part { 182struct mmc_part {
183 unsigned int size; /* partition size (in bytes) */ 183 unsigned int size; /* partition size (in bytes) */
184 unsigned int part_cfg; /* partition type */ 184 unsigned int part_cfg; /* partition type */
185 char name[DISK_NAME_LEN]; 185 char name[MAX_MMC_PART_NAME_LEN];
186 bool force_ro; /* to make boot parts RO by default */ 186 bool force_ro; /* to make boot parts RO by default */
187}; 187};
188 188