Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1765908AbXHNVfe (ORCPT ); Tue, 14 Aug 2007 17:35:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753082AbXHNVXY (ORCPT ); Tue, 14 Aug 2007 17:23:24 -0400 Received: from emailhub.stusta.mhn.de ([141.84.69.5]:38445 "EHLO mailhub.stusta.mhn.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1756531AbXHNVXU (ORCPT ); Tue, 14 Aug 2007 17:23:20 -0400 Date: Tue, 14 Aug 2007 23:23:11 +0200 From: Adrian Bunk To: Andrew Morton , David Howells , dwmw2@infradead.org Cc: linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org Subject: [-mm patch] drivers/mtd/mtdbdi.c is no longer an own module Message-ID: <20070814212311.GL18945@stusta.de> References: <20070809015106.cd0bfc53.akpm@linux-foundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20070809015106.cd0bfc53.akpm@linux-foundation.org> User-Agent: Mutt/1.5.16 (2007-06-11) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1433 Lines: 46 mtdbdi.c is now in the same module as mtdcore.c Signed-off-by: Adrian Bunk --- BTW: I'd even suggest merging mtdbdi.c into mtdcore.c since it only contains these 3 small structs. drivers/mtd/mtdbdi.c | 4 ---- 1 file changed, 4 deletions(-) 12a09e985ee2fe258cecfef9b811f9202ec87c67 diff --git a/drivers/mtd/mtdbdi.c b/drivers/mtd/mtdbdi.c index f9f8eef..ae2c06c 100644 --- a/drivers/mtd/mtdbdi.c +++ b/drivers/mtd/mtdbdi.c @@ -22,7 +22,6 @@ struct backing_dev_info mtd_bdi_unmappable = { .capabilities = BDI_CAP_MAP_COPY, }; -EXPORT_SYMBOL_GPL(mtd_bdi_unmappable); /* * backing device capabilities for R/O mappable devices (such as ROM) @@ -33,7 +32,6 @@ struct backing_dev_info mtd_bdi_ro_mappable = { .capabilities = (BDI_CAP_MAP_COPY | BDI_CAP_MAP_DIRECT | BDI_CAP_EXEC_MAP | BDI_CAP_READ_MAP), }; -EXPORT_SYMBOL_GPL(mtd_bdi_ro_mappable); /* * backing device capabilities for writable mappable devices (such as RAM) @@ -45,6 +43,4 @@ struct backing_dev_info mtd_bdi_rw_mappable = { BDI_CAP_EXEC_MAP | BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP), }; -EXPORT_SYMBOL_GPL(mtd_bdi_rw_mappable); -MODULE_LICENSE("GPL v2"); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/