From patchwork Wed Nov 25 17:12:48 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartlomiej Zolnierkiewicz X-Patchwork-Id: 39376 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.176.167]) by ozlabs.org (Postfix) with ESMTP id 72F6CB7BBB for ; Thu, 26 Nov 2009 04:22:27 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934853AbZKYRNo (ORCPT ); Wed, 25 Nov 2009 12:13:44 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S934862AbZKYRNb (ORCPT ); Wed, 25 Nov 2009 12:13:31 -0500 Received: from mail-ew0-f219.google.com ([209.85.219.219]:52976 "EHLO mail-ew0-f219.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934853AbZKYRN0 (ORCPT ); Wed, 25 Nov 2009 12:13:26 -0500 Received: by mail-ew0-f219.google.com with SMTP id 19so602015ewy.21 for ; Wed, 25 Nov 2009 09:13:32 -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=O94jbEXzWKyDjoPb32zOKkEr2z35FXT8bTRx9Kzpz/w=; b=o05Us7YTzEKvhodDU0/0CtReJ9uEG5zoXqTZFRW+fjCBvKePgYCimJOnzOsG92aTKk kz/8qmc0vMwmBhKbFnx7t9mIbteuPUh1e6LJIDsF9WAz5Ki6Z6HDmb6ZqvYMstLQ09eb gjTkNwKz7FQeitY5fmF4UGux7ZkaX5RGnf2D4= 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=OqmoZ4IpQzkDbJEQFKQWsMSA7glLZSfFdnLB8d7tC5JAlbhRP6r0EwIcTU90zQuC3l O9kuFtTM9BwBKS6nwQH1kuDpa4BIwS/ga6ViUXZ6aH+0rGewZg9JOsU7Gqq7YJMQCSQr tXmOu+KIYDhbLjeklePho6g02n9ccygOtoj6I= Received: by 10.216.89.70 with SMTP id b48mr2532728wef.160.1259169212081; Wed, 25 Nov 2009 09:13:32 -0800 (PST) Received: from ?127.0.0.1? (chello089079027028.chello.pl [89.79.27.28]) by mx.google.com with ESMTPS id x6sm14724592gvf.22.2009.11.25.09.13.30 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 25 Nov 2009 09:13:31 -0800 (PST) From: Bartlomiej Zolnierkiewicz To: linux-ide@vger.kernel.org Cc: Bartlomiej Zolnierkiewicz , linux-kernel@vger.kernel.org Date: Wed, 25 Nov 2009 18:12:48 +0100 Message-Id: <20091125171248.5446.22482.sendpatchset@localhost> In-Reply-To: <20091125170218.5446.13513.sendpatchset@localhost> References: <20091125170218.5446.13513.sendpatchset@localhost> Subject: [PATCH 86/86] libata: add private driver field to struct ata_device Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org From: Bartlomiej Zolnierkiewicz Subject: [PATCH] libata: add private driver field to struct ata_device This brings struct ata_device in-line with struct ata_{port,host}. Signed-off-by: Bartlomiej Zolnierkiewicz --- include/linux/libata.h | 1 + 1 file changed, 1 insertion(+) -- 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/libata.h =================================================================== --- a/include/linux/libata.h +++ b/include/linux/libata.h @@ -585,6 +585,7 @@ struct ata_device { unsigned int horkage; /* List of broken features */ unsigned long flags; /* ATA_DFLAG_xxx */ struct scsi_device *sdev; /* attached SCSI device */ + void *private_data; #ifdef CONFIG_ATA_ACPI acpi_handle acpi_handle; union acpi_object *gtf_cache;