The patch titled arlan: fix section mismatch warnings has been removed from the -mm tree. Its filename is arlan-fix-section-mismatch-warnings.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: arlan: fix section mismatch warnings From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Fix section mismatch warnings: WARNING: drivers/net/wireless/arlan.o - Section mismatch: reference to .init.text:arlan_probe from .text between 'init_module' (at offset 0x3526) and 'cleanup_module' WARNING: drivers/net/wireless/arlan.o - Section mismatch: reference to .init.text:init_arlan_proc from .text between 'init_module' (at offset 0x3539) and 'cleanup_module' WARNING: drivers/net/wireless/arlan.o - Section mismatch: reference to .exit.text:cleanup_arlan_proc from .text between 'cleanup_module' (at offset 0x356c) and 'arlan_diagnostic_info_string' Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Cc: "John W. Linville" <linville@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/wireless/arlan-main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/net/wireless/arlan-main.c~arlan-fix-section-mismatch-warnings drivers/net/wireless/arlan-main.c --- devel/drivers/net/wireless/arlan-main.c~arlan-fix-section-mismatch-warnings 2006-05-25 14:53:31.000000000 -0700 +++ devel-akpm/drivers/net/wireless/arlan-main.c 2006-05-25 14:53:31.000000000 -0700 @@ -1838,7 +1838,7 @@ struct net_device * __init arlan_probe(i } #ifdef MODULE -int init_module(void) +int __init init_module(void) { int i = 0; @@ -1860,7 +1860,7 @@ int init_module(void) } -void cleanup_module(void) +void __exit cleanup_module(void) { int i = 0; struct net_device *dev; _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch firmware_class-s-semaphores-mutexes.patch config-exit-if-no-beginning-filename.patch git-mtd.patch git-scsi-rc-fixes.patch imm-no-need-for-unchecked_isa_dma.patch lpfc-sparse-null-warnings.patch aic7-cleanup-module_parm_desc-strings.patch qla1280-fix-section-mismatch-warnings.patch areca-raid-linux-scsi-driver.patch git-watchdog.patch add-poisonh-and-patch-primary-users.patch update-2-drivers-for-poisonh.patch add-doc-submitchecklist.patch doc-add-audit-acct-to-docbook.patch ip2-fix-sections.patch codingstyle-add-typedefs-chapter.patch fix-listh-kernel-doc.patch listh-doc-change-counter-to-control.patch kernel-doc-drop-leading-space-in-sections.patch kernel-doc-script-cleanups.patch wd7000-fix-section-mismatch-warnings.patch megaraid_mbox-fix-section-mismatch-warnings.patch pi-futex-rt-mutex-docs-update.patch acpi-identify-which-device-is-not-power-manageable.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html