diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2022-01-19 17:59:51 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2022-10-10 18:14:18 +0200 |
commit | 1918404b1d57f12719f4668cf7f841ecafbe0aa7 (patch) | |
tree | b9626617cf514131be8ec8fea717ffb3a5a9870a /target | |
parent | 07ea71c7b70db70c1368dc78378d4abe71ef1f53 (diff) | |
download | upstream-1918404b1d57f12719f4668cf7f841ecafbe0aa7.tar.gz upstream-1918404b1d57f12719f4668cf7f841ecafbe0aa7.tar.bz2 upstream-1918404b1d57f12719f4668cf7f841ecafbe0aa7.zip |
ramips: mt7621_nand: reduce log verbosity
Avoid flooding the log with the message below by increasing the log
level to debug:
mt7621-nand 1e003000.nand: Using programmed access timing: 31c07388
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
(cherry-picked from commit 89c195925109d2b59f284bfdd23a3d853c67e27b)
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c b/target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c index f9d617b520..04bc6040c6 100644 --- a/target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c +++ b/target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c @@ -759,7 +759,7 @@ static int mt7621_nfc_setup_interface(struct nand_chip *nand, int csline, acccon = ACCTIMING(tpoecs, tprecs, tc2r, tw2r, twh, twst, trlt); - dev_info(nfc->dev, "Using programmed access timing: %08x\n", acccon); + dev_dbg(nfc->dev, "Using programmed access timing: %08x\n", acccon); nfi_write32(nfc, NFI_ACCCON, acccon); |