From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750803AbVKSUdT (ORCPT ); Sat, 19 Nov 2005 15:33:19 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750809AbVKSUcu (ORCPT ); Sat, 19 Nov 2005 15:32:50 -0500 Received: from mailout.stusta.mhn.de ([141.84.69.5]:38917 "HELO mailout.stusta.mhn.de") by vger.kernel.org with SMTP id S1750805AbVKSUcs (ORCPT ); Sat, 19 Nov 2005 15:32:48 -0500 Date: Sat, 19 Nov 2005 09:11:30 +0100 From: Adrian Bunk To: philb@gnu.org, tim@cyberelk.net, campbell@torque.net, andrea@suse.de Cc: linux-parport@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [2.6 patch] include/linux/parport_pc.h: "extern inline" -> "static inline" Message-ID: <20051119081129.GH16060@stusta.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org "extern inline" doesn't make much sense. Signed-off-by: Adrian Bunk --- linux-2.6.15-rc1-mm2-full/include/linux/parport_pc.h.old 2005-11-19 02:33:28.000000000 +0100 +++ linux-2.6.15-rc1-mm2-full/include/linux/parport_pc.h 2005-11-19 02:33:44.000000000 +0100 @@ -79,7 +79,7 @@ } #ifdef DEBUG_PARPORT -extern __inline__ void dump_parport_state (char *str, struct parport *p) +static inline void dump_parport_state (char *str, struct parport *p) { /* here's hoping that reading these ports won't side-effect anything underneath */ unsigned char ecr = inb (ECONTROL (p));