diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2020-11-13 15:38:31 +0300 |
---|---|---|
committer | Miquel Raynal <miquel.raynal@bootlin.com> | 2020-12-11 00:37:32 +0300 |
commit | 131ce3ed5dea26d5a606c2e673c022c4572d04cc (patch) | |
tree | e09e3c219c15e1773e912b6cf9971b3b04a08080 /Documentation/driver-api/mtd | |
parent | 0f6b791955a6365b5ebe8b6a5b01de69a47ee92e (diff) | |
download | linux-131ce3ed5dea26d5a606c2e673c022c4572d04cc.tar.xz |
docs: mtd: Avoid htmldocs warnings
Moving files around produced the following warnings:
Error: Cannot open file drivers/mtd/nand/raw/nand_ecc.c
Error: Cannot open file drivers/mtd/nand/raw/nand_ecc.c
Fix one by just dropping the reference because it is not relevant, the
other by using a better noun instead of a file name.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20201113123831.32429-1-miquel.raynal@bootlin.com
Diffstat (limited to 'Documentation/driver-api/mtd')
-rw-r--r-- | Documentation/driver-api/mtd/nand_ecc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/driver-api/mtd/nand_ecc.rst b/Documentation/driver-api/mtd/nand_ecc.rst index e8d3c53a5056..74347c14a70b 100644 --- a/Documentation/driver-api/mtd/nand_ecc.rst +++ b/Documentation/driver-api/mtd/nand_ecc.rst @@ -5,7 +5,7 @@ NAND Error-correction Code Introduction ============ -Having looked at the linux mtd/nand driver and more specific at nand_ecc.c +Having looked at the linux mtd/nand Hamming software ECC engine driver I felt there was room for optimisation. I bashed the code for a few hours performing tricks like table lookup removing superfluous code etc. After that the speed was increased by 35-40%. |