From 93db446a424cee9387b532995e6b516667079555 Mon Sep 17 00:00:00 2001 From: Boris Brezillon Date: Mon, 5 Feb 2018 23:02:04 +0100 Subject: mtd: nand: move raw NAND related code to the raw/ subdir As part of the process of sharing more code between different NAND based devices, we need to move all raw NAND related code to the raw/ subdirectory. Signed-off-by: Boris Brezillon --- drivers/mtd/nand/nand_macronix.c | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 drivers/mtd/nand/nand_macronix.c (limited to 'drivers/mtd/nand/nand_macronix.c') diff --git a/drivers/mtd/nand/nand_macronix.c b/drivers/mtd/nand/nand_macronix.c deleted file mode 100644 index d290ff2a6d2f..000000000000 --- a/drivers/mtd/nand/nand_macronix.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (C) 2017 Free Electrons - * Copyright (C) 2017 NextThing Co - * - * Author: Boris Brezillon - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ - -#include - -static int macronix_nand_init(struct nand_chip *chip) -{ - if (nand_is_slc(chip)) - chip->bbt_options |= NAND_BBT_SCAN2NDPAGE; - - return 0; -} - -const struct nand_manufacturer_ops macronix_nand_manuf_ops = { - .init = macronix_nand_init, -}; -- cgit