From mboxrd@z Thu Jan 1 00:00:00 1970 From: Grant Likely Subject: [PATCH 29/37] drivers/char: use .of_node instead of .archdata.of_node in struct device Date: Thu, 11 Mar 2010 11:06:28 -0700 Message-ID: <20100311180627.4824.32286.stgit@angua> References: <20100311174830.4824.19820.stgit@angua> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail-pz0-f203.google.com (mail-pz0-f203.google.com [209.85.222.203]) by alsa0.perex.cz (Postfix) with ESMTP id EC3E8103A62 for ; Thu, 11 Mar 2010 19:06:30 +0100 (CET) Received: by mail-pz0-f203.google.com with SMTP id 41so172871pzk.23 for ; Thu, 11 Mar 2010 10:06:30 -0800 (PST) In-Reply-To: <20100311174830.4824.19820.stgit@angua> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: alsa-devel-bounces@alsa-project.org Errors-To: alsa-devel-bounces@alsa-project.org To: monstr@monstr.eu, gregkh@suse.de, benh@kernel.crashing.org, akpm@linux-foundation.org, davem@davemloft.net, sfr@canb.auug.org.au, jgarzik@pobox.com, ben-linux@fluff.org, dwmw2@infrade List-Id: alsa-devel@alsa-project.org .archdata.node is being removed from Microblaze, SPARC and PowerPC. Signed-off-by: Grant Likely --- drivers/char/viotape.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/char/viotape.c b/drivers/char/viotape.c index 042c814..f37935c 100644 --- a/drivers/char/viotape.c +++ b/drivers/char/viotape.c @@ -865,7 +865,7 @@ static int viotape_probe(struct vio_dev *vdev, const struct vio_device_id *id) { int i = vdev->unit_address; int j; - struct device_node *node = vdev->dev.archdata.of_node; + struct device_node *node = vdev->dev.of_node; if (i >= VIOTAPE_MAX_TAPE) return -ENODEV;