diff options
author | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-02-06 01:02:00 +0300 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-02-16 12:08:50 +0300 |
commit | 93cbd6f354f178b6e0a7d80482981520be6347b4 (patch) | |
tree | 6c1bafef39252e94498393b02e1157bc84398ba9 /drivers/mtd/nand/bf5xx_nand.c | |
parent | 43a0a45abc4ab386f3ba978c877a2b68a0cad448 (diff) | |
download | linux-93cbd6f354f178b6e0a7d80482981520be6347b4.tar.xz |
mtd: nand: Stop using full path when referring to files placed in the same dir
Some NAND drivers are derived from other NAND drivers and state it in
their license header. Using full path to point to other driver files
sitting in the same directory is not such a good idea, since the NAND
drivers might be moved to a different directory at some point, and we
don't to patch all license/copyright headers everytime this happen.
The only exception where we keep full path is when the referred source
files no longer exist in the tree.
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Diffstat (limited to 'drivers/mtd/nand/bf5xx_nand.c')
-rw-r--r-- | drivers/mtd/nand/bf5xx_nand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/bf5xx_nand.c b/drivers/mtd/nand/bf5xx_nand.c index 4a5f56f76efd..9a1d8d104570 100644 --- a/drivers/mtd/nand/bf5xx_nand.c +++ b/drivers/mtd/nand/bf5xx_nand.c @@ -5,10 +5,10 @@ * * Blackfin BF5xx on-chip NAND flash controller driver * - * Derived from drivers/mtd/nand/s3c2410.c + * Derived from s3c2410.c * Copyright (c) 2007 Ben Dooks <ben@simtec.co.uk> * - * Derived from drivers/mtd/nand/cafe.c + * Derived from cafe.c * Copyright © 2006 Red Hat, Inc. * Copyright © 2006 David Woodhouse <dwmw2@infradead.org> * |