From patchwork Sun Feb 7 07:48:34 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 10424 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 1D2EB7EEF; Sun, 7 Feb 2016 08:48:48 +0100 (CET) Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id C0669532D for ; Sun, 7 Feb 2016 08:48:44 +0100 (CET) Received: by mail-wm0-f44.google.com with SMTP id g62so78345480wme.0 for ; Sat, 06 Feb 2016 23:48:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=HiAzQQMZ8c0PG61iK4Yf5yM0h9EdLEGn5tuCVcggQX4=; b=rt8S35s4sy+IWEof/T3hmHPGKR0pGnv7wEWVjXc0eZnxg+HzEphCkESa9F9SAZr030 +1XKMneCL1RK2BESeVtgl/iCN7/snMZXrGs0028DC+8RxqxPnPE3ULWGZqetB0NiCeTG ufeEUnZS9CGCmls31wJf/T6wjGGgYDniNhMhaNELK6DbJhCG4uTKma5h0VbO9v7Mh0cx NCf12SmPe2r2awUzwvWkEWpPUmXwNAimlKQd0hpBlHpxJ2rN1J/tBVQ+jxz2xvPih6Gt 0vZpkNAa0I+W3sFV4zSA2UjH0Yx6LeE4kd011jasweCoDovfcDe70+dTWmn5N/UI8nKe hw0g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=HiAzQQMZ8c0PG61iK4Yf5yM0h9EdLEGn5tuCVcggQX4=; b=GC9tbKnncogfO7appok7wXU2Oa9XVV+COelKrZbwkLY0+zMSDS9ZKOmywCSEam1ffl Z9lePb5dVNozqtXrXVr3tIBuJy/lcaFDqh3CEfpnNR55vjNdoBbMN7oSk4gcvceWrYmM 3xuairS1LgnEYoEdVQBYFyHZcjx3+WolKyEtmPliPlR4pRb1W7pHsoW+1ASSJI29ciG0 /DANcnNboa+nRjCFSYciX3r5qKgNC5j2abbECX9a5WgMVoPwQpbyeTKxD1YP2GcAVnAG ZtwDOPjRdE5MHH+iJrzBHmlCeea3AxjhZca+QtMqjR4i3DTx3wgHbgSspuIGnnTrcuy3 xCaw== X-Gm-Message-State: AG10YOTxXHBfM9Ai/DvHLJXyLdEusAW1Y0uu6ZnjsCl5NyGGocATON3Blzuylwx3zxpospPJ X-Received: by 10.28.0.69 with SMTP id 66mr36111173wma.51.1454831324656; Sat, 06 Feb 2016 23:48:44 -0800 (PST) Received: from gloops.dev.6wind.com (144.77.126.78.rev.sfr.net. [78.126.77.144]) by smtp.gmail.com with ESMTPSA id lw7sm23737165wjb.19.2016.02.06.23.48.43 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 06 Feb 2016 23:48:43 -0800 (PST) From: David Marchand To: dev@dpdk.org Date: Sun, 7 Feb 2016 08:48:34 +0100 Message-Id: <1454831317-4542-2-git-send-email-david.marchand@6wind.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1454831317-4542-1-git-send-email-david.marchand@6wind.com> References: <1454694945-18040-1-git-send-email-david.marchand@6wind.com> <1454831317-4542-1-git-send-email-david.marchand@6wind.com> Subject: [dpdk-dev] [PATCH v2 1/4] virtio/bsd: fix typo X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fixes: c52afa68d763 ("virtio: move left PCI stuff in the right file") Signed-off-by: David Marchand Acked-by: Yuanhan Liu --- drivers/net/virtio/virtio_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/virtio/virtio_pci.c b/drivers/net/virtio/virtio_pci.c index 4e9928a..cd8b0ae 100644 --- a/drivers/net/virtio/virtio_pci.c +++ b/drivers/net/virtio/virtio_pci.c @@ -439,7 +439,7 @@ legacy_virtio_resource_init(struct rte_pci_device *pci_dev) #else static int -legayc_virtio_has_msix(const struct rte_pci_addr *loc __rte_unused) +legacy_virtio_has_msix(const struct rte_pci_addr *loc __rte_unused) { /* nic_uio does not enable interrupts, return 0 (false). */ return 0;