mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
1a44a260fe
Removed upstreamed: pistachio/patches-6.1/110-pwm-img-fix-clock-lookup.patch [1] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.84&id=44b6fb6cdedb2c391a2da355521d4610b2645fcc Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
23 lines
757 B
Diff
23 lines
757 B
Diff
From 322035ab2b0113d98b6c0ea788d971e0df2952a4 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Golle <daniel@makrotopia.org>
|
|
Date: Thu, 20 Jul 2023 17:36:44 +0100
|
|
Subject: [PATCH 15/15] mmc: block: set GENHD_FL_NVMEM
|
|
|
|
Set flag to consider MMC block devices as NVMEM providers.
|
|
|
|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|
---
|
|
drivers/mmc/core/block.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/mmc/core/block.c
|
|
+++ b/drivers/mmc/core/block.c
|
|
@@ -2540,6 +2540,7 @@ static struct mmc_blk_data *mmc_blk_allo
|
|
md->disk->major = MMC_BLOCK_MAJOR;
|
|
md->disk->minors = perdev_minors;
|
|
md->disk->first_minor = devidx * perdev_minors;
|
|
+ md->disk->flags = GENHD_FL_NVMEM;
|
|
md->disk->fops = &mmc_bdops;
|
|
md->disk->private_data = md;
|
|
md->parent = parent;
|