From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261660AbTJSPxi (ORCPT ); Sun, 19 Oct 2003 11:53:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261662AbTJSPxi (ORCPT ); Sun, 19 Oct 2003 11:53:38 -0400 Received: from p060080.ppp.asahi-net.or.jp ([221.113.60.80]:15602 "EHLO mitou.ysato.dip.jp") by vger.kernel.org with ESMTP id S261660AbTJSPxg (ORCPT ); Sun, 19 Oct 2003 11:53:36 -0400 Date: Mon, 20 Oct 2003 00:53:29 +0900 Message-ID: From: Yoshinori Sato To: Linus Torvalds Cc: linux kernel Mailing List Subject: [PATCH] H8/300 support update User-Agent: Wanderlust/2.11.7 (Wonderwall) SEMI/1.14.5 (Awara-Onsen) LIMIT/1.14.7 (Fujiidera) APEL/10.6 Emacs/21.3 (i386-pc-linux-gnu) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: multipart/mixed; boundary="Multipart_Mon_Oct_20_00:53:29_2003-1" Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org --Multipart_Mon_Oct_20_00:53:29_2003-1 Content-Type: text/plain; charset=US-ASCII - fix build error -- Yoshinori Sato --Multipart_Mon_Oct_20_00:53:29_2003-1 Content-Type: application/octet-stream; type=patch Content-Disposition: attachment; filename="linux-2.6.0-test8-h8300.diff" Content-Transfer-Encoding: 7bit diff -Nru linux-2.6.0-test8/arch/h8300/kernel/time.c linux-2.6.0-test8-h8300/arch/h8300/kernel/time.c --- linux-2.6.0-test8/arch/h8300/kernel/time.c 2003-10-17 00:07:45.000000000 +0900 +++ linux-2.6.0-test8-h8300/arch/h8300/kernel/time.c 2003-10-19 02:26:08.000000000 +0900 @@ -143,3 +143,8 @@ } EXPORT_SYMBOL(do_settimeofday); + +unsigned long long sched_clock(void) +{ + return (unsigned long long)jiffies * (1000000000 / HZ); +} diff -Nru linux-2.6.0-test8/arch/h8300/lib/checksum.c linux-2.6.0-test8-h8300/arch/h8300/lib/checksum.c --- linux-2.6.0-test8/arch/h8300/lib/checksum.c 2003-10-17 00:07:45.000000000 +0900 +++ linux-2.6.0-test8-h8300/arch/h8300/lib/checksum.c 2003-10-19 02:27:49.000000000 +0900 @@ -32,7 +32,6 @@ of the assembly has to go. */ #include -#include static inline unsigned short from32to16(unsigned long x) { --Multipart_Mon_Oct_20_00:53:29_2003-1--