Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 25 Mar 2003 15:02:09 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 25 Mar 2003 15:02:09 -0500 Received: from air-2.osdl.org ([65.172.181.6]:54241 "EHLO mail.osdl.org") by vger.kernel.org with ESMTP id ; Tue, 25 Mar 2003 15:02:08 -0500 Subject: [TRIVIAL PATCH][2.5.66] fix for link-error in i810fb_imageblit From: Andy Pfiffer To: "linux-kernel@vger.kernel.org" Cc: jsimmons@infradead.org Content-Type: text/plain Organization: Message-Id: <1048623198.14000.8.camel@andyp.pdx.osdl.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 25 Mar 2003 12:13:19 -0800 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1407 Lines: 41 This patch is one way to fix a link-error found in the i810 FB driver as found in pure 2.5.66. The error is reported as an undefined reference to __memcpy() inside i810fb_imageblit(). The error: ld -m elf_i386 -T arch/i386/vmlinux.lds.s arch/i386/kernel/head.o arch/i386/kernel/init_task.o init/built-in.o --start-group usr/built-in.o arch/i386/kernel/built-in.o arch/i386/mm/built-in.o arch/i386/mach-default/built-in.o kernel/built-in.o mm/built-in.o fs/built-in.o ipc/built-in.o security/built-in.o crypto/built-in.o lib/lib.a arch/i386/lib/lib.a drivers/built-in.o sound/built-in.o arch/i386/pci/built-in.o net/built-in.o --end-group -o .tmp_vmlinux1 drivers/built-in.o: In function `i810fb_imageblit': drivers/built-in.o(.text+0xb59c1): undefined reference to `__memcpy' make: *** [.tmp_vmlinux1] Error 1 The diff: diff -Nru a/include/linux/fb.h b/include/linux/fb.h --- a/include/linux/fb.h Tue Mar 25 12:02:29 2003 +++ b/include/linux/fb.h Tue Mar 25 12:02:29 2003 @@ -4,6 +4,7 @@ #include #include #include +#include /* Definitions of frame buffers */ - 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/