Lines Matching defs:model
166 int family, model;
173 model = CPUID_TO_MODEL(ci->ci_signature);
179 amdzentemp_init(sc, family, model);
257 amdzentemp_init(struct amdzentemp_softc *sc, int family, int model)
260 sc->sc_numsensors = 1 + amdzentemp_probe_ccd_sensors(sc, family, model);
312 * documented in BKDGs prior to family 15h model 00h.)
370 amdzentemp_probe_ccd_sensors17h(struct amdzentemp_softc *sc, int model)
374 switch (model) {
391 "Unrecognized Family 17h Model: %02xh\n", model);
399 amdzentemp_probe_ccd_sensors19h(struct amdzentemp_softc *sc, int model)
403 switch (model) {
426 "Unrecognized Family 19h Model: %02xh\n", model);
434 amdzentemp_probe_ccd_sensors1ah(struct amdzentemp_softc *sc, int model)
438 switch (model) {
457 "Unrecognized Family 19h Model: %02xh\n", model);
465 amdzentemp_probe_ccd_sensors(struct amdzentemp_softc *sc, int family, int model)
471 nccd = amdzentemp_probe_ccd_sensors17h(sc, model);
474 nccd = amdzentemp_probe_ccd_sensors19h(sc, model);
477 nccd = amdzentemp_probe_ccd_sensors1ah(sc, model);