Searched refs:concfg (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/virtio/console/ |
H A D | virtio_console.c | 320 struct virtio_console_config concfg; in vtcon_attach() local 336 vtcon_read_config(sc, &concfg); in vtcon_attach() 337 vtcon_determine_max_ports(sc, &concfg); in vtcon_attach() 467 vtcon_read_config(struct vtcon_softc *sc, struct virtio_console_config *concfg) in vtcon_read_config() argument 473 bzero(concfg, sizeof(struct virtio_console_config)); in vtcon_read_config() 475 VTCON_GET_CONFIG(dev, VIRTIO_CONSOLE_F_SIZE, cols, concfg); in vtcon_read_config() 476 VTCON_GET_CONFIG(dev, VIRTIO_CONSOLE_F_SIZE, rows, concfg); in vtcon_read_config() 477 VTCON_GET_CONFIG(dev, VIRTIO_CONSOLE_F_MULTIPORT, max_nr_ports, concfg); in vtcon_read_config() 553 struct virtio_console_config *concfg) in vtcon_determine_max_ports() argument 558 min(concfg->max_nr_ports, VTCON_MAX_PORTS); in vtcon_determine_max_ports() [all …]
|