lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20190403020240.10764-1-chris.packham@alliedtelesis.co.nz> Date: Wed, 3 Apr 2019 15:02:40 +1300 From: Chris Packham <chris.packham@...iedtelesis.co.nz> To: dwmw2@...radead.org, computersforpeace@...il.com, bbrezillon@...nel.org, marek.vasut@...il.com, richard@....at Cc: linux-mtd@...ts.infradead.org, linux-kernel@...r.kernel.org, Chris Packham <chris.packham@...iedtelesis.co.nz>, stable@...r.kernel.org, Hamish Martin <hamish.martin@...iedtelesis.co.nz> Subject: [PATCH] mtd: maps: Allow MTD_PHYSMAP with MTD_RAM When the physmap_of_core.c code was merged into physmap-core.c the ability to use MTD_PHYSMAP_OF with only MTD_RAM selected was lost. Restore this by adding MTD_RAM to the dependencies of MTD_PHYSMAP. Fixes: commit 642b1e8dbed7 ("mtd: maps: Merge physmap_of.c into physmap-core.c") Cc: <stable@...r.kernel.org> Signed-off-by: Chris Packham <chris.packham@...iedtelesis.co.nz> Reviewed-by: Hamish Martin <hamish.martin@...iedtelesis.co.nz> --- drivers/mtd/maps/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/maps/Kconfig b/drivers/mtd/maps/Kconfig index e0cf869c8544..544ed1931843 100644 --- a/drivers/mtd/maps/Kconfig +++ b/drivers/mtd/maps/Kconfig @@ -10,7 +10,7 @@ config MTD_COMPLEX_MAPPINGS config MTD_PHYSMAP tristate "Flash device in physical memory map" - depends on MTD_CFI || MTD_JEDECPROBE || MTD_ROM || MTD_LPDDR + depends on MTD_CFI || MTD_JEDECPROBE || MTD_ROM || MTD_RAM || MTD_LPDDR help This provides a 'mapping' driver which allows the NOR Flash and ROM driver code to communicate with chips which are mapped -- 2.21.0
Powered by blists - more mailing lists