.. | .. |
---|
173 | 173 | |
---|
174 | 174 | /** |
---|
175 | 175 | * men_z135_handle_modem_status() - Handle change of modem status |
---|
176 | | - * @port: The UART port |
---|
| 176 | + * @uart: The UART port |
---|
177 | 177 | * |
---|
178 | 178 | * Handle change of modem status register. This is done by reading the "delta" |
---|
179 | 179 | * versions of DCD (Data Carrier Detect) and CTS (Clear To Send). |
---|
.. | .. |
---|
236 | 236 | |
---|
237 | 237 | /** |
---|
238 | 238 | * men_z135_handle_rx() - RX tasklet routine |
---|
239 | | - * @arg: Pointer to struct men_z135_port |
---|
| 239 | + * @uart: Pointer to struct men_z135_port |
---|
240 | 240 | * |
---|
241 | 241 | * Copy from RX FIFO and acknowledge number of bytes copied. |
---|
242 | 242 | */ |
---|
.. | .. |
---|
287 | 287 | |
---|
288 | 288 | /** |
---|
289 | 289 | * men_z135_handle_tx() - TX tasklet routine |
---|
290 | | - * @arg: Pointer to struct men_z135_port |
---|
| 290 | + * @uart: Pointer to struct men_z135_port |
---|
291 | 291 | * |
---|
292 | 292 | */ |
---|
293 | 293 | static void men_z135_handle_tx(struct men_z135_port *uart) |
---|
.. | .. |
---|
353 | 353 | |
---|
354 | 354 | memcpy_toio(port->membase + MEN_Z135_TX_RAM, &xmit->buf[xmit->tail], n); |
---|
355 | 355 | xmit->tail = (xmit->tail + n) & (UART_XMIT_SIZE - 1); |
---|
356 | | - mmiowb(); |
---|
357 | 356 | |
---|
358 | 357 | iowrite32(n & 0x3ff, port->membase + MEN_Z135_TX_CTRL); |
---|
359 | 358 | |
---|
.. | .. |
---|
597 | 596 | |
---|
598 | 597 | /** |
---|
599 | 598 | * men_z135_enable_ms() - Enable Modem Status |
---|
600 | | - * port: |
---|
| 599 | + * @port: the port |
---|
601 | 600 | * |
---|
602 | 601 | * Enable Modem Status IRQ. |
---|
603 | 602 | */ |
---|
.. | .. |
---|
931 | 930 | MODULE_LICENSE("GPL v2"); |
---|
932 | 931 | MODULE_DESCRIPTION("MEN 16z135 High Speed UART"); |
---|
933 | 932 | MODULE_ALIAS("mcb:16z135"); |
---|
| 933 | +MODULE_IMPORT_NS(MCB); |
---|