From a710802b663e4d4a9ea0a634bfa3ecd6682565c5 Mon Sep 17 00:00:00 2001 From: Randy Dunlap Date: Mon, 25 Oct 2004 04:20:41 -0700 Subject: [PATCH] __init dependencies: ignore __param Ignore __param section references; they aren't discarded. Error: ./drivers/mtd/devices/phram.o __param refers to 0000000000000010 R_X86_64_64 .init.text+0x0000000000000013 Error: ./drivers/scsi/dc395x.o __param refers to 0000000000000020 R_X86_64_64 .init.data+0x0000000000000064 Error: ./drivers/usb/gadget/ether.o __param refers to 0000000000000048 R_X86_64_64 .init.data+0x0000000000000020 Signed-off-by: Randy Dunlap Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- scripts/reference_init.pl | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/reference_init.pl b/scripts/reference_init.pl index 23cea187a857..e4c57a371fba 100644 --- a/scripts/reference_init.pl +++ b/scripts/reference_init.pl @@ -95,6 +95,7 @@ foreach $object (sort(keys(%object))) { $from !~ /\.text\.lock$/ && $from !~ /\.pci_fixup_header$/ && $from !~ /\.pci_fixup_final$/ && + $from !~ /\__param$/ && $from !~ /\.debug_/)) { printf("Error: %s %s refers to %s\n", $object, $from, $line); } -- cgit v1.2.3