From: Bean Huo Date: Fri, 8 Feb 2019 18:34:31 +0000 (+0000) Subject: mtd: spi-nor: Fix wrong abbreviation HWCPAS X-Git-Tag: v5.1-rc1~186^2~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=225c0eda36bdb5327dc0125f4cf222c4cfd802aa;p=thirdparty%2Fkernel%2Fstable.git mtd: spi-nor: Fix wrong abbreviation HWCPAS Change SNOR_HWCPAS_READ_OCTAL to SNOR_HWCAPS_READ_OCTAL. Signed-off-by: Bean Huo Reviewed-by: Tudor Ambarus Signed-off-by: Boris Brezillon --- diff --git a/include/linux/mtd/spi-nor.h b/include/linux/mtd/spi-nor.h index 2353af8bac993..b3d360b0ee3d7 100644 --- a/include/linux/mtd/spi-nor.h +++ b/include/linux/mtd/spi-nor.h @@ -487,7 +487,7 @@ struct spi_nor_hwcaps { #define SNOR_HWCAPS_READ_4_4_4 BIT(9) #define SNOR_HWCAPS_READ_1_4_4_DTR BIT(10) -#define SNOR_HWCPAS_READ_OCTAL GENMASK(14, 11) +#define SNOR_HWCAPS_READ_OCTAL GENMASK(14, 11) #define SNOR_HWCAPS_READ_1_1_8 BIT(11) #define SNOR_HWCAPS_READ_1_8_8 BIT(12) #define SNOR_HWCAPS_READ_8_8_8 BIT(13)