From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stephen@networkplumber.org>
Received: from mail-pa0-f47.google.com (mail-pa0-f47.google.com
 [209.85.220.47]) by dpdk.org (Postfix) with ESMTP id DAAE65690
 for <dev@dpdk.org>; Thu, 10 Sep 2015 18:49:20 +0200 (CEST)
Received: by pacex6 with SMTP id ex6so47987625pac.0
 for <dev@dpdk.org>; Thu, 10 Sep 2015 09:49:20 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to
 :references:mime-version:content-type:content-transfer-encoding;
 bh=F6Mso7wJd2HHODf4KlkJRgLIODHUWlrrPxOlYOvcg2Q=;
 b=Ji56K1wHYPUyjIVxpIhGVXFfF8jY50r8Tenu+093h1jcVm6LaUZ14JkI8sqtARHsae
 O1PqagCAf9ZJdcG3nQWm/5fQ/xX0OG/k9O2tERExc1Ctt5072+A0IIqCERKZWz0NDkez
 JvHc/AaWmUr/ZOh+iCH4QmKnk5URoP+DR3efI3lS2Pq82Qer4Xr7tYeOxgFIZA1A7mlb
 nX5YclSRqM9W+MOCcr4HMNuFPc/NEjCcwSSFlaLSX9Y9o+ZSt3/bd+kaVH9tDumsOV1L
 YlxqpPTnUkQ1FhXpwQv4W30YJUcmKCVvtIIBhyudxQlY9GqyTR8cpD76CyxWDqd6tLtA
 49OQ==
X-Gm-Message-State: ALoCoQkPd7lSmU78LQCGa+xTDP5qOOmXv7AKFYkfZ7z8OB6/140gPdWmqXTCuEKR1BHFd+oAnxp/
X-Received: by 10.68.197.196 with SMTP id iw4mr85090145pbc.153.1441903760135; 
 Thu, 10 Sep 2015 09:49:20 -0700 (PDT)
Received: from urahara (static-50-53-82-155.bvtn.or.frontiernet.net.
 [50.53.82.155])
 by smtp.gmail.com with ESMTPSA id x10sm13036869pas.12.2015.09.10.09.49.19
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Thu, 10 Sep 2015 09:49:19 -0700 (PDT)
Date: Thu, 10 Sep 2015 09:49:28 -0700
From: Stephen Hemminger <stephen@networkplumber.org>
To: Ferruh Yigit <ferruh.yigit@intel.com>
Message-ID: <20150910094928.7095f949@urahara>
In-Reply-To: <1441900891-27736-1-git-send-email-ferruh.yigit@intel.com>
References: <1441900891-27736-1-git-send-email-ferruh.yigit@intel.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH] igb_uio: remove unnecessary
 igbuio_get_uio_pci_dev()
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 10 Sep 2015 16:49:21 -0000

On Thu, 10 Sep 2015 17:01:31 +0100
Ferruh Yigit <ferruh.yigit@intel.com> wrote:

> +	struct rte_uio_pci_dev *udev = (struct rte_uio_pci_dev *)info->priv;

Cast of void * is never needed in C.