From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <olivier.matz@6wind.com>
Received: from mail-wg0-f44.google.com (mail-wg0-f44.google.com [74.125.82.44])
 by dpdk.org (Postfix) with ESMTP id C6FECAE25
 for <dev@dpdk.org>; Fri, 25 Apr 2014 14:00:12 +0200 (CEST)
Received: by mail-wg0-f44.google.com with SMTP id m15so3535851wgh.27
 for <dev@dpdk.org>; Fri, 25 Apr 2014 05:00:14 -0700 (PDT)
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=Lbk9+4xpLkvoSeIvICbcZPiYGfKUznghOkQwE2xdFFY=;
 b=mJeQHy1DWmsZ53JLx51Jt/9XcUg/YJR02d/KSo4au/mp2TXjq7ipzZfza3et5WUx9p
 +lUK4QqdmOVkdMchaDPcQtNN0cULOGzKveAcNKr8bFKfcTXuJfpTkZyvxwf8rV/9Ukd5
 X5eYs1cmyWM2DnAt3A/qu5qO3xIPV+H0Kwahit0WYpuBd5Nd6xu6V9qJvu+BEiJt0Kp1
 CgmZ3DFUUlMJYeEFh8Y+XrKKczgAtqQZxhkOsro/3LWo/2rAOBw0Knqbzec3DlEhfMqF
 lycObDsKsCx5g+0/uFYC95nHHTTDnuKLmVBBfuFeMpZ0s8NZ/N+DuCQaH1txMNNLL1oH
 UtpA==
X-Gm-Message-State: ALoCoQn7KZsxa/7nMewJTE9n4ayH/QUBtFHedjUh4msdFtKt4kj0RUERL6KiNNn9K1pG6J8ClZm3
X-Received: by 10.180.189.65 with SMTP id gg1mr3435217wic.56.1398427214372;
 Fri, 25 Apr 2014 05:00:14 -0700 (PDT)
Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237])
 by mx.google.com with ESMTPSA id q2sm5487386wix.5.2014.04.25.05.00.13
 for <multiple recipients>
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
 Fri, 25 Apr 2014 05:00:13 -0700 (PDT)
From: Olivier Matz <olivier.matz@6wind.com>
To: dev@dpdk.org
Date: Fri, 25 Apr 2014 13:59:42 +0200
Message-Id: <1398427188-14914-5-git-send-email-olivier.matz@6wind.com>
X-Mailer: git-send-email 1.9.2
In-Reply-To: <1398427188-14914-1-git-send-email-olivier.matz@6wind.com>
References: <1398427188-14914-1-git-send-email-olivier.matz@6wind.com>
Subject: [dpdk-dev] [PATCH 04/10] bsd/devargs: use a comma instead of
	semicolon to separate key/values
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: Fri, 25 Apr 2014 12:00:13 -0000

The bsdapp part was missing in commit a8b97e3a1db0a9366d58811411b904e4fef8160f.

This commit changes the API of --use-device command line argument.
It changes the separators from ';' to ','.

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
---
 lib/librte_eal/bsdapp/eal/eal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_eal/bsdapp/eal/eal.c b/lib/librte_eal/bsdapp/eal/eal.c
index 6be706c..48bce40 100644
--- a/lib/librte_eal/bsdapp/eal/eal.c
+++ b/lib/librte_eal/bsdapp/eal/eal.c
@@ -494,7 +494,7 @@ eal_parse_use_device(const char *optarg)
 		return -1;
 
 	/* remove arguments in 'dup' string */
-	sep = strchr(dup, ';');
+	sep = strchr(dup, ',');
 	if (sep != NULL)
 		*sep = '\0';
 
-- 
1.9.2