mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
uart: Use device_set_descf()
No functional change intended. MFC after: 1 week (cherry picked from commit 66d2d42a1f26a6ef868d7d46f87d6fad0bc099aa)
This commit is contained in:
parent
9905677886
commit
d73f9fc264
2 changed files with 2 additions and 6 deletions
|
|
@ -412,7 +412,6 @@ quicc_bus_param(struct uart_softc *sc, int baudrate, int databits,
|
|||
static int
|
||||
quicc_bus_probe(struct uart_softc *sc)
|
||||
{
|
||||
char buf[80];
|
||||
int error;
|
||||
|
||||
error = quicc_probe(&sc->sc_bas);
|
||||
|
|
@ -422,8 +421,7 @@ quicc_bus_probe(struct uart_softc *sc)
|
|||
sc->sc_rxfifosz = 1;
|
||||
sc->sc_txfifosz = 1;
|
||||
|
||||
snprintf(buf, sizeof(buf), "quicc, channel %d", sc->sc_bas.chan);
|
||||
device_set_desc_copy(sc->sc_dev, buf);
|
||||
device_set_descf(sc->sc_dev, "quicc, channel %d", sc->sc_bas.chan);
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -509,7 +509,6 @@ z8530_bus_param(struct uart_softc *sc, int baudrate, int databits,
|
|||
static int
|
||||
z8530_bus_probe(struct uart_softc *sc)
|
||||
{
|
||||
char buf[80];
|
||||
int error;
|
||||
char ch;
|
||||
|
||||
|
|
@ -522,8 +521,7 @@ z8530_bus_probe(struct uart_softc *sc)
|
|||
|
||||
ch = sc->sc_bas.chan - 1 + 'A';
|
||||
|
||||
snprintf(buf, sizeof(buf), "z8530, channel %c", ch);
|
||||
device_set_desc_copy(sc->sc_dev, buf);
|
||||
device_set_descf(sc->sc_dev, "z8530, channel %c", ch);
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue