Lines Matching defs:weight
373 * The "ddi-intr-weight" property contains the weight of each interrupt
386 int32_t weight;
388 weight = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
389 DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "ddi-intr-weight", -1);
390 if (weight < -1)
391 weight = -1; /* undefined */
392 return (weight);
396 i_ddi_set_intr_weight(dev_info_t *dip, int32_t weight)
401 if ((weight > 0) && (oweight != weight))
403 "ddi-intr-weight", weight);