There is no need for elaborate queries and error checking when trying to

set FW4MSG_ENCAP.

MFC after:	3 days
This commit is contained in:
Navdeep Parhar 2013-04-11 21:15:35 +00:00
parent b4c19408e9
commit 53e8e49dcf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=249382

View file

@ -2480,27 +2480,13 @@ static int
set_params__post_init(struct adapter *sc)
{
uint32_t param, val;
int rc;
/* ask for encapsulated CPLs */
param = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
rc = -t4_query_params(sc, sc->mbox, sc->pf, 0, 1, &param, &val);
if (rc == 0) {
/* ask for encapsulated CPLs */
param = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
val = 1;
rc = -t4_set_params(sc, sc->mbox, sc->pf, 0, 1, &param, &val);
if (rc != 0) {
device_printf(sc->dev,
"failed to set parameter (post_init): %d.\n", rc);
return (rc);
}
} else if (rc != FW_EINVAL) {
device_printf(sc->dev,
"failed to check for encapsulated CPLs: %d.\n", rc);
} else
rc = 0; /* the firmware doesn't support the param, no worries */
val = 1;
(void)t4_set_params(sc, sc->mbox, sc->pf, 0, 1, &param, &val);
return (rc);
return (0);
}
#undef FW_PARAM_PFVF