Lines Matching refs:dev

29 	struct platform_device  *dev;  member
92 dev_dbg(port->dev, "%s - total read %d bytes\n", in timbuart_rx_chars()
107 dev_dbg(port->dev, in timbuart_tx_chars()
147 dev_dbg(port->dev, "%s - leaving\n", __func__); in timbuart_handle_tx_port()
169 dev_dbg(port->dev, "%s - leaving\n", __func__); in timbuart_handle_rx_port()
180 dev_dbg(uart->port.dev, "%s ISR: %x\n", __func__, isr); in timbuart_tasklet()
193 dev_dbg(uart->port.dev, "%s leaving\n", __func__); in timbuart_tasklet()
199 dev_dbg(port->dev, "%s - cts %x\n", __func__, cts); in timbuart_get_mctrl()
209 dev_dbg(port->dev, "%s - %x\n", __func__, mctrl); in timbuart_set_mctrl()
242 dev_dbg(port->dev, "%s\n", __func__); in timbuart_startup()
258 dev_dbg(port->dev, "%s\n", __func__); in timbuart_shutdown()
286 dev_dbg(port->dev, "%s - bindex %d\n", __func__, bindex); in timbuart_set_termios()
314 struct platform_device *pdev = to_platform_device(port->dev); in timbuart_release_port()
328 struct platform_device *pdev = to_platform_device(port->dev); in timbuart_request_port()
410 static int timbuart_probe(struct platform_device *dev) in timbuart_probe() argument
416 dev_dbg(&dev->dev, "%s\n", __func__); in timbuart_probe()
434 uart->port.dev = &dev->dev; in timbuart_probe()
436 iomem = platform_get_resource(dev, IORESOURCE_MEM, 0); in timbuart_probe()
444 irq = platform_get_irq(dev, 0); in timbuart_probe()
461 platform_set_drvdata(dev, uart); in timbuart_probe()
476 static int timbuart_remove(struct platform_device *dev) in timbuart_remove() argument
478 struct timbuart_port *uart = platform_get_drvdata(dev); in timbuart_remove()