Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Use "Static" for dwc_otg_init_fifo



details:   https://anonhg.NetBSD.org/src/rev/47a194f2eb53
branches:  trunk
changeset: 784621:47a194f2eb53
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sun Feb 03 22:25:39 2013 +0000

description:
Use "Static" for dwc_otg_init_fifo

diffstat:

 sys/dev/usb/dwc_otg.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 998e8a0ab6de -r 47a194f2eb53 sys/dev/usb/dwc_otg.c
--- a/sys/dev/usb/dwc_otg.c     Sun Feb 03 22:23:48 2013 +0000
+++ b/sys/dev/usb/dwc_otg.c     Sun Feb 03 22:25:39 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dwc_otg.c,v 1.41 2013/01/31 12:41:41 skrll Exp $       */
+/*     $NetBSD: dwc_otg.c,v 1.42 2013/02/03 22:25:39 skrll Exp $       */
 
 /*-
  * Copyright (c) 2012 Hans Petter Selasky. All rights reserved.
@@ -60,7 +60,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dwc_otg.c,v 1.41 2013/01/31 12:41:41 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dwc_otg.c,v 1.42 2013/02/03 22:25:39 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -225,7 +225,7 @@
 static dwc_otg_cmd_t   dwc_otg_host_data_tx;
 static dwc_otg_cmd_t   dwc_otg_host_data_rx;
 
-static int             dwc_otg_init_fifo(struct dwc_otg_softc *, uint8_t);
+Static int             dwc_otg_init_fifo(struct dwc_otg_softc *, uint8_t);
 Static void            dwc_otg_clocks_on(struct dwc_otg_softc*);
 Static void            dwc_otg_clocks_off(struct dwc_otg_softc*);
 Static void            dwc_otg_pull_up(struct dwc_otg_softc *);
@@ -1831,7 +1831,7 @@
 
 /* FreeBSD direct (mostly) copy functions */
 
-static int
+Static int
 dwc_otg_init_fifo(struct dwc_otg_softc *sc, uint8_t mode)
 {
 //     struct dwc_otg_profile *pf;



Home | Main Index | Thread Index | Old Index