From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755531AbYICK73 (ORCPT ); Wed, 3 Sep 2008 06:59:29 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751840AbYICK7T (ORCPT ); Wed, 3 Sep 2008 06:59:19 -0400 Received: from smtp-vbr11.xs4all.nl ([194.109.24.31]:3777 "EHLO smtp-vbr11.xs4all.nl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751098AbYICK7S (ORCPT ); Wed, 3 Sep 2008 06:59:18 -0400 Date: Wed, 3 Sep 2008 12:59:04 +0200 (CEST) From: Roman Zippel X-X-Sender: roman@localhost.localdomain To: Geert Uytterhoeven cc: linux-m68k@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [patch 7/8] m68k: Add missing dma_sync_single_range_for_{cpu,device}() In-Reply-To: <20080903071742.932797091@mail.of.borg> Message-ID: References: <20080903071542.615137611@mail.of.borg> <20080903071742.932797091@mail.of.borg> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Wed, 3 Sep 2008, Geert Uytterhoeven wrote: > Add the missing dma_sync_single_range_for_{cpu,device}(), and remove the bogus > `inline' for the non-static function dma_sync_single_for_device(). It's not bogus, it's a hint to gcc to inline the function into the callers in the same file, but also to provide an external version. bye, Roman