From patchwork Fri Jan 29 16:05:19 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartlomiej Zolnierkiewicz X-Patchwork-Id: 43993 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 5AE4BB7D32 for ; Sat, 30 Jan 2010 03:20:26 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754189Ab0A2QTN (ORCPT ); Fri, 29 Jan 2010 11:19:13 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751239Ab0A2QS6 (ORCPT ); Fri, 29 Jan 2010 11:18:58 -0500 Received: from mail-fx0-f220.google.com ([209.85.220.220]:53041 "EHLO mail-fx0-f220.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753960Ab0A2QF0 (ORCPT ); Fri, 29 Jan 2010 11:05:26 -0500 Received: by mail-fx0-f220.google.com with SMTP id 20so2015120fxm.21 for ; Fri, 29 Jan 2010 08:05:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:date:message-id :in-reply-to:references:subject; bh=4Uls/LScfKeGBNgzFACijzX2ObVUx5wEUlKuMFMO2qE=; b=aOXoY9S1AAsfXpo+25YBgUvGMjnPff8ywCfqYob1EidMmsyZ3k1wvYLFTj36FTTaIO Khus9/P4MlhxPxv3cJP2eMgLtO8vK9kUjNV8yDJFNP1qsa6SsAa1Vj9xNvZu92O35Yek ltCn5Zrj90CmrEeno/Yw/3wga8U/BDzVkQOag= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:in-reply-to:references:subject; b=eTc7BuSX/TCXZryZX5tIigdqK7BjmKOJ7pHOFgr1IBAbSrF3DPITeuYuPvhIOIXRZw GuI/pjUUNq3aKb3nC9S82SrxjAbd+dud2D9RjLBT408d/aSyTJuR0jSLetjIpwaGaKKp 4pUH+FFPvpsO61nS0Ka2IgGuS+U8CTWcxE784= Received: by 10.223.63.193 with SMTP id c1mr830642fai.80.1264781125883; Fri, 29 Jan 2010 08:05:25 -0800 (PST) Received: from ?127.0.0.1? (chello089079027028.chello.pl [89.79.27.28]) by mx.google.com with ESMTPS id 13sm549485fxm.9.2010.01.29.08.05.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 29 Jan 2010 08:05:25 -0800 (PST) From: Bartlomiej Zolnierkiewicz To: linux-ide@vger.kernel.org Cc: Bartlomiej Zolnierkiewicz , linux-kernel@vger.kernel.org Date: Fri, 29 Jan 2010 17:05:19 +0100 Message-Id: <20100129160519.21495.68671.sendpatchset@localhost> In-Reply-To: <20100129160308.21495.14120.sendpatchset@localhost> References: <20100129160308.21495.14120.sendpatchset@localhost> Subject: [PATCH 20/68] ide: add hwif->udma_mask field Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org From: Bartlomiej Zolnierkiewicz Subject: [PATCH] ide: add hwif->udma_mask field Add udma_mask field to ide_hwif_t to match udma_mask field used in struct ata_port. Signed-off-by: Bartlomiej Zolnierkiewicz --- include/linux/ide.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: b/include/linux/ide.h =================================================================== --- a/include/linux/ide.h +++ b/include/linux/ide.h @@ -693,7 +693,10 @@ typedef struct hwif_s { u8 pio_mask; - u8 ultra_mask; + union { + u8 ultra_mask; + u8 udma_mask; + }; u8 mwdma_mask; u8 swdma_mask;