From: H Hartley Sweeten Date: Mon, 17 Sep 2012 20:16:05 +0000 (-0700) Subject: staging: comedi: mite: local symbols should not be exported X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2ad1d2e1ad789b878ca3c79c62d015d7cefd6b71;p=deliverable%2Flinux.git staging: comedi: mite: local symbols should not be exported The function mite_fifo_size() is only referenced in this file. Make it static. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/mite.c b/drivers/staging/comedi/drivers/mite.c index d4f486ac3e22..e27850f628ce 100644 --- a/drivers/staging/comedi/drivers/mite.c +++ b/drivers/staging/comedi/drivers/mite.c @@ -92,7 +92,7 @@ static void dump_chip_signature(u32 csigr_bits) mite_csigr_wins(csigr_bits), mite_csigr_iowins(csigr_bits)); } -unsigned mite_fifo_size(struct mite_struct *mite, unsigned channel) +static unsigned mite_fifo_size(struct mite_struct *mite, unsigned channel) { unsigned fcr_bits = readl(mite->mite_io_addr + MITE_FCR(channel)); unsigned empty_count = (fcr_bits >> 16) & 0xff;