doc: update release notes and guide for enic
[dpdk.git] / doc / guides / sample_app_ug / cmd_line.rst
index dadd32d..02a295f 100644 (file)
@@ -32,20 +32,20 @@ Command Line Sample Application
 ===============================
 
 This chapter describes the Command Line sample application that
-is part of the Intel® Data Plane Development Kit (Intel® DPDK).
+is part of the Data Plane Development Kit (DPDK).
 
 Overview
 --------
 
 The Command Line sample application is a simple application that
-demonstrates the use of the command line interface in the Intel® DPDK.
+demonstrates the use of the command line interface in the DPDK.
 This application is a readline-like interface that can be used
-to debug an Intel® DPDK application, in a Linux* application environment.
+to debug a DPDK application, in a Linux* application environment.
 
 .. note::
 
     The rte_cmdline library should not be used in production code since
-    it is not validated to the same standard as other Intel®  DPDK libraries.
+    it is not validated to the same standard as other DPDK libraries.
     See also the "rte_cmdline library should not be used in production code due to limited testing" item
     in the "Known Issues" section of the Release Notes.
 
@@ -81,7 +81,7 @@ Compiling the Application
 
         export RTE_TARGET=x86_64-native-linuxapp-gcc
 
-    Refer to the *Intel® DPDK Getting Started Guide* for possible RTE_TARGET values.
+    Refer to the *DPDK Getting Started Guide* for possible RTE_TARGET values.
 
 #.  Build the application:
 
@@ -98,7 +98,7 @@ To run the application in linuxapp environment, issue the following command:
 
     $ ./build/cmdline -c f -n 4
 
-Refer to the *Intel® DPDK Getting Started Guide* for general information on running applications
+Refer to the *DPDK Getting Started Guide* for general information on running applications
 and the Environment Abstraction Layer (EAL) options.
 
 Explanation
@@ -114,7 +114,7 @@ This is achieved as follows:
 
 .. code-block:: c
 
-    int MAIN(int argc, char **argv)
+    int main(int argc, char **argv)
     {
         ret = rte_eal_init(argc, argv);
         if (ret < 0)