All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: speakup: fix warning for static declaration
@ 2017-03-27  6:37 Gustavo A. R. Silva
  2017-03-27  7:51 ` Okash Khawaja
  2017-03-27  7:55 ` Samuel Thibault
  0 siblings, 2 replies; 5+ messages in thread
From: Gustavo A. R. Silva @ 2017-03-27  6:37 UTC (permalink / raw)
  To: gregkh, w.d.hubbs, chris, kirk, samuel.thibault, okash.khawaja,
	rvarsha016, arushisinghal19971997, shiva
  Cc: speakup, devel, linux-kernel

Fix the following sparse warning:
symbol 'spk_serial_out' was not declared. Should it be static?

Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
---
 drivers/staging/speakup/serialio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/speakup/serialio.c b/drivers/staging/speakup/serialio.c
index 5e31aca..3fab1c3 100644
--- a/drivers/staging/speakup/serialio.c
+++ b/drivers/staging/speakup/serialio.c
@@ -243,7 +243,7 @@ unsigned char spk_serial_in_nowait(void)
 }
 EXPORT_SYMBOL_GPL(spk_serial_in_nowait);
 
-int spk_serial_out(struct spk_synth *in_synth, const char ch)
+static int spk_serial_out(struct spk_synth *in_synth, const char ch)
 {
 	if (in_synth->alive && spk_wait_for_xmitr(in_synth)) {
 		outb_p(ch, speakup_info.port_tts);
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-03-27  8:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-27  6:37 [PATCH] staging: speakup: fix warning for static declaration Gustavo A. R. Silva
2017-03-27  7:51 ` Okash Khawaja
2017-03-27  7:58   ` Samuel Thibault
2017-03-27  8:39     ` Okash Khawaja
2017-03-27  7:55 ` Samuel Thibault

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.