On Fri, 1 Mar 2019 20:46:12 +0800 Qiming Yang <[email protected]> wrote:
> static int
> +ice_parse_pkg_path_handler(__rte_unused const char *key,
> + const char *value,
> + void *opaque)
> +{
> + struct ice_adapter *ad;
> +
> + ad = (struct ice_adapter *)opaque;
Minor language nitpick:
Explicit cast of void * pointer is not necessary in C.

