| 1 | --- a/drivers/mtd/Kconfig |
| 2 | +++ b/drivers/mtd/Kconfig |
| 3 | @@ -158,7 +158,7 @@ config MTD_BCM63XX_PARTS |
| 4 | |
| 5 | config MTD_WRT160NL_PARTS |
| 6 | tristate "Linksys WRT160NL partitioning support" |
| 7 | - depends on MTD_PARTITIONS && ATH79_MACH_WRT160NL |
| 8 | + depends on ATH79_MACH_WRT160NL |
| 9 | ---help--- |
| 10 | Linksys WRT160NL partitioning support |
| 11 | |
| 12 | @@ -178,6 +178,12 @@ config MTD_MYLOADER_PARTS |
| 13 | You will still need the parsing functions to be called by the driver |
| 14 | for your particular device. It won't happen automatically. |
| 15 | |
| 16 | +config MTD_TPLINK_PARTS |
| 17 | + tristate "TP-Link AR7XXX/AR9XXX partitioning support" |
| 18 | + depends on ATH79 |
| 19 | + ---help--- |
| 20 | + TBD. |
| 21 | + |
| 22 | comment "User Modules And Translation Layers" |
| 23 | |
| 24 | config MTD_CHAR |
| 25 | --- a/drivers/mtd/Makefile |
| 26 | +++ b/drivers/mtd/Makefile |
| 27 | @@ -13,6 +13,7 @@ obj-$(CONFIG_MTD_AFS_PARTS) += afs.o |
| 28 | obj-$(CONFIG_MTD_AR7_PARTS) += ar7part.o |
| 29 | obj-$(CONFIG_MTD_BCM63XX_PARTS) += bcm63xxpart.o |
| 30 | obj-$(CONFIG_MTD_MYLOADER_PARTS) += myloader.o |
| 31 | +obj-$(CONFIG_MTD_TPLINK_PARTS) += tplinkpart.o |
| 32 | obj-$(CONFIG_MTD_WRT160NL_PARTS) += wrt160nl_part.o |
| 33 | |
| 34 | # 'Users' - code which presents functionality to userspace. |
| 35 | |