On 01/16/2019 04:12 AM, Ryder Lee wrote: > From: Guochun Mao <guochun.mao@xxxxxxxxxxxx> > > SNOR_HWCAPS_READ should be supported by this controller, so add this > flag to spi_nor_hwcaps mask. > > Signed-off-by: Guochun Mao <guochun.mao@xxxxxxxxxxxx> > Signed-off-by: Ryder Lee <ryder.lee@xxxxxxxxxxxx> Reviewed-by: Tudor Ambarus <tudor.ambarus@xxxxxxxxxxxxx> > --- > Changes since v2: Revise commit msg. > Changes since v1: none. > --- > drivers/mtd/spi-nor/mtk-quadspi.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/mtd/spi-nor/mtk-quadspi.c b/drivers/mtd/spi-nor/mtk-quadspi.c > index 5442993..d9eed68 100644 > --- a/drivers/mtd/spi-nor/mtk-quadspi.c > +++ b/drivers/mtd/spi-nor/mtk-quadspi.c > @@ -431,7 +431,8 @@ static int mtk_nor_init(struct mtk_nor *mtk_nor, > struct device_node *flash_node) > { > const struct spi_nor_hwcaps hwcaps = { > - .mask = SNOR_HWCAPS_READ_FAST | > + .mask = SNOR_HWCAPS_READ | > + SNOR_HWCAPS_READ_FAST | > SNOR_HWCAPS_READ_1_1_2 | > SNOR_HWCAPS_PP, > }; >