diff mbox series

[25/36] tty: serial: sifive: Struct headers should start with 'struct <name>'

Message ID 20201104193549.4026187-26-lee.jones@linaro.org
State New
Headers show
Series [01/36] tty: serdev: core: Remove unused variable 'dummy' | expand

Commit Message

Lee Jones Nov. 4, 2020, 7:35 p.m. UTC
Also supply a missing member description.

Fixes the following W=1 kernel build warning(s):

 drivers/tty/serial/sifive.c:157: warning: cannot understand function prototype: 'struct sifive_serial_port '

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Jiri Slaby <jirislaby@kernel.org>
Cc: Palmer Dabbelt <palmer@dabbelt.com>
Cc: Paul Walmsley <paul.walmsley@sifive.com>
Cc: linux-serial@vger.kernel.org
Cc: linux-riscv@lists.infradead.org
Signed-off-by: Lee Jones <lee.jones@linaro.org>
---
 drivers/tty/serial/sifive.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Palmer Dabbelt Nov. 6, 2020, 8:11 a.m. UTC | #1
On Wed, 04 Nov 2020 11:35:38 PST (-0800), lee.jones@linaro.org wrote:
> Also supply a missing member description.

>

> Fixes the following W=1 kernel build warning(s):

>

>  drivers/tty/serial/sifive.c:157: warning: cannot understand function prototype: 'struct sifive_serial_port '

>

> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

> Cc: Jiri Slaby <jirislaby@kernel.org>

> Cc: Palmer Dabbelt <palmer@dabbelt.com>

> Cc: Paul Walmsley <paul.walmsley@sifive.com>

> Cc: linux-serial@vger.kernel.org

> Cc: linux-riscv@lists.infradead.org

> Signed-off-by: Lee Jones <lee.jones@linaro.org>

> ---

>  drivers/tty/serial/sifive.c | 3 ++-

>  1 file changed, 2 insertions(+), 1 deletion(-)

>

> diff --git a/drivers/tty/serial/sifive.c b/drivers/tty/serial/sifive.c

> index 13eadcb8aec4e..1066eebe3b28b 100644

> --- a/drivers/tty/serial/sifive.c

> +++ b/drivers/tty/serial/sifive.c

> @@ -144,12 +144,13 @@

>   */

>

>  /**

> - * sifive_serial_port - driver-specific data extension to struct uart_port

> + * struct sifive_serial_port - driver-specific data extension to struct uart_port

>   * @port: struct uart_port embedded in this struct

>   * @dev: struct device *

>   * @ier: shadowed copy of the interrupt enable register

>   * @clkin_rate: input clock to the UART IP block.

>   * @baud_rate: UART serial line rate (e.g., 115200 baud)

> + * @clk: reference to this device's clock

>   * @clk_notifier: clock rate change notifier for upstream clock changes

>   *

>   * Configuration data specific to this SiFive UART.


Reviewed-by: Palmer Dabbelt <palmerdabbelt@google.com>

Acked-by: Palmer Dabbelt <palmerdabbelt@google.com>


Thanks!
diff mbox series

Patch

diff --git a/drivers/tty/serial/sifive.c b/drivers/tty/serial/sifive.c
index 13eadcb8aec4e..1066eebe3b28b 100644
--- a/drivers/tty/serial/sifive.c
+++ b/drivers/tty/serial/sifive.c
@@ -144,12 +144,13 @@ 
  */
 
 /**
- * sifive_serial_port - driver-specific data extension to struct uart_port
+ * struct sifive_serial_port - driver-specific data extension to struct uart_port
  * @port: struct uart_port embedded in this struct
  * @dev: struct device *
  * @ier: shadowed copy of the interrupt enable register
  * @clkin_rate: input clock to the UART IP block.
  * @baud_rate: UART serial line rate (e.g., 115200 baud)
+ * @clk: reference to this device's clock
  * @clk_notifier: clock rate change notifier for upstream clock changes
  *
  * Configuration data specific to this SiFive UART.