]> git.droids-corp.org - dpdk.git/blobdiff - drivers/net/ice/base/ice_parser.c
net/ice/base: add profile validation on switch filter
[dpdk.git] / drivers / net / ice / base / ice_parser.c
index 690004e6e294095507db403322c8be92d1cb38b2..9b106baff0d48fe6033a8fc6a1d20488150d1723 100644 (file)
@@ -167,13 +167,11 @@ enum ice_status ice_parser_create(struct ice_hw *hw, struct ice_parser **psr)
        struct ice_parser *p;
 
        p = (struct ice_parser *)ice_malloc(hw, sizeof(struct ice_parser));
-       p->hw = hw;
-       p->rt.psr = p;
-
        if (!p)
                return ICE_ERR_NO_MEMORY;
 
        p->hw = hw;
+       p->rt.psr = p;
 
        p->imem_table = ice_imem_table_get(hw);
        if (!p->imem_table) {