mtd: Implement mtd_{read,write}() as wrappers around mtd_{read,write}_oob()
authorBoris Brezillon <boris.brezillon@bootlin.com>
Thu, 20 Dec 2018 14:13:20 +0000 (15:13 +0100)
committerBoris Brezillon <bbrezillon@kernel.org>
Wed, 16 Jan 2019 19:32:17 +0000 (20:32 +0100)
commit2431c4f5b46c32c4ac495456b1ef4ce59c0bb85d
treeb886405413cd01f3ea774d02fde9a2be3820fb8c
parent2037f9d8c242af5d549dd5ba32ff1ec1f49ceaad
mtd: Implement mtd_{read,write}() as wrappers around mtd_{read,write}_oob()

mtd_{read,write}_oob() already take care of checking the params and
calling ->_{read,write}() or  ->_{read,write}_oob() based on the
request and the operations supported by the MTD device.
No need to duplicate the logic, we can simply implement
mtd_{read,write}() as wrappers around mtd_{read,write}_oob().

Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Boris Brezillon <bbrezillon@kernel.org>
drivers/mtd/mtdcore.c