app: remove IPMI_CMD_WILDCARD

cmdWildcard is already declared in api-types.hpp, this commit remove
IPMI_CMD_WILDCARD in app.hpp.

Change-Id: Ic1d944f012022e702a1e5a0aef7a039249684fa2
Signed-off-by: George Liu <liuxiwei@ieisystem.com>
diff --git a/include/ipmid/api.h b/include/ipmid/api.h
index 188db4a..fd6fee6 100644
--- a/include/ipmid/api.h
+++ b/include/ipmid/api.h
@@ -100,14 +100,6 @@
     NETFUN_IBM_OEM = 0x3A
 };
 
-// IPMI commands for net functions. Since this is to be used both by the ipmi
-// function router and also the callback handler registration function, its put
-// in this .H file.
-enum ipmi_netfn_wild_card_cmd
-{
-    IPMI_CMD_WILDCARD = 0xFF,
-};
-
 // Return (completion) codes from a IPMI operation as needed by IPMI V2.0 spec.
 enum ipmi_return_codes
 {
diff --git a/include/ipmid/oemrouter.hpp b/include/ipmid/oemrouter.hpp
index 2e4ea23..4759950 100644
--- a/include/ipmid/oemrouter.hpp
+++ b/include/ipmid/oemrouter.hpp
@@ -36,7 +36,7 @@
     virtual void activate() = 0;
 
     /// Register a handler for given OEMNumber & cmd.
-    /// Use IPMI_CMD_WILDCARD to catch any unregistered cmd
+    /// Use cmdWildcard to catch any unregistered cmd
     /// for the given OEMNumber.
     ///
     /// @param[in] oen - the OEM Number.