Home
last modified time | relevance | path

Searched refs:tx_speed (Results 1 – 5 of 5) sorted by relevance

/freebsd-9-stable/sys/dev/firewire/
Dif_fwe.c86 static int tx_speed = 2; variable
96 SYSCTL_INT(_hw_firewire_fwe, OID_AUTO, tx_speed, CTLFLAG_RW, &tx_speed, 0,
102 TUNABLE_INT("hw.firewire.fwe.tx_speed", &tx_speed);
167 if (tx_speed < 0) in fwe_attach()
168 tx_speed = fwe->fd.fc->speed; in fwe_attach()
372 xfer->send.spd = tx_speed; in fwe_init()
Dif_fwip.c99 static int tx_speed = 2; variable
170 if (tx_speed < 0) in fwip_attach()
171 tx_speed = fwip->fd.fc->speed; in fwip_attach()
368 xfer->send.spd = tx_speed; in fwip_init()
/freebsd-9-stable/sys/dev/lmc/
Dif_lmc.c1035 if (sc->status.tx_speed == 0) in hssi_watchdog()
1614 if (sc->status.tx_speed == 0) in ssi_watchdog()
4433 u_int32_t tx_speed = READ_CSR(TLP_TIMER); in core_watchdog() local
4444 sc->status.tx_speed = (0xFFFF - (tx_speed & 0xFFFF)) << 12; in core_watchdog()
4723 ifp->if_baudrate = sc->status.tx_speed; in lmc_watchdog()
6592 sc->hdlc_settings.clock_rate = sc->status.tx_speed;
Dif_lmc.h766 u_int32_t tx_speed; /* measured TX bits/sec */ member
/freebsd-9-stable/usr.sbin/lmcconfig/
Dlmcconfig.c626 printf("Tx Speed:\t\t%u\n", status.tx_speed); in print_tx_speed()