summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/stallion.c
diff options
context:
space:
mode:
authorgpalmer <gpalmer@FreeBSD.org>1996-06-12 04:26:36 +0000
committergpalmer <gpalmer@FreeBSD.org>1996-06-12 04:26:36 +0000
commited313e370b9e41acf6b806cf76cd2640d0bcbb86 (patch)
treee8f029bea3aee5eaab5d4cf8770f0467c6e085bc /sys/i386/isa/stallion.c
parentcc48a948425542bec3fdfe9df5be738cd859c15b (diff)
downloadFreeBSD-src-ed313e370b9e41acf6b806cf76cd2640d0bcbb86.zip
FreeBSD-src-ed313e370b9e41acf6b806cf76cd2640d0bcbb86.tar.gz
Clean up -Wunused warnings.
Reviewed by: Greg Ungerer <gerg@stallion.oz.au>
Diffstat (limited to 'sys/i386/isa/stallion.c')
-rw-r--r--sys/i386/isa/stallion.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/sys/i386/isa/stallion.c b/sys/i386/isa/stallion.c
index bedd0c3..7a8805f 100644
--- a/sys/i386/isa/stallion.c
+++ b/sys/i386/isa/stallion.c
@@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: stallion.c,v 1.2 1996/05/04 08:44:42 peter Exp $
*/
/*****************************************************************************/
@@ -143,15 +143,15 @@ static unsigned int stl_irqshared = 0;
* Define our local driver identity first. Set up stuff to deal with
* all the local structures required by a serial tty driver.
*/
-static char *stl_drvname = "stl";
-static char *stl_longdrvname = "Stallion Multiport Serial Driver";
-static char *stl_drvversion = "0.0.5";
-static int stl_brdprobed[STL_MAXBRDS];
+static const char stl_drvname[] = "stl";
+static const char stl_longdrvname[] = "Stallion Multiport Serial Driver";
+static const char stl_drvversion[] = "0.0.5";
+static int stl_brdprobed[STL_MAXBRDS];
-static int stl_nrbrds = 0;
-static int stl_doingtimeout = 0;
+static int stl_nrbrds = 0;
+static int stl_doingtimeout = 0;
-static char *__file__ = /*__FILE__*/ "stallion.c";
+static const char __file__[] = /*__FILE__*/ "stallion.c";
/*
* Define global stats structures. Not used often, and can be
@@ -703,7 +703,6 @@ char *stlpciprobe(pcici_t tag, pcidi_t type)
void stlpciattach(pcici_t tag, int unit)
{
stlbrd_t *brdp;
- unsigned long iobase, iopage, irq;
#if DEBUG
printf("stlpciattach(tag=%x,unit=%x)\n", (int) &tag, unit);
@@ -3057,8 +3056,6 @@ static int stl_getportstats(stlport_t *portp, caddr_t data)
static int stl_clrportstats(stlport_t *portp, caddr_t data)
{
- int rc;
-
if (portp == (stlport_t *) NULL) {
stl_comstats = *((comstats_t *) data);
portp = stl_getport(stl_comstats.brd, stl_comstats.panel,
OpenPOWER on IntegriCloud