Module Name:    src
Committed By:   jmcneill
Date:           Wed Apr 12 00:39:28 UTC 2017

Modified Files:
        src/sys/arch/arm/nvidia: tegra_mc.c

Log Message:
Make tegra_mc_intr static to match prototype


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/nvidia/tegra_mc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/nvidia/tegra_mc.c
diff -u src/sys/arch/arm/nvidia/tegra_mc.c:1.5 src/sys/arch/arm/nvidia/tegra_mc.c:1.6
--- src/sys/arch/arm/nvidia/tegra_mc.c:1.5	Sun Dec 13 17:39:19 2015
+++ src/sys/arch/arm/nvidia/tegra_mc.c	Wed Apr 12 00:39:28 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: tegra_mc.c,v 1.5 2015/12/13 17:39:19 jmcneill Exp $ */
+/* $NetBSD: tegra_mc.c,v 1.6 2017/04/12 00:39:28 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2015 Jared D. McNeill <[email protected]>
@@ -29,7 +29,7 @@
 #include "locators.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tegra_mc.c,v 1.5 2015/12/13 17:39:19 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tegra_mc.c,v 1.6 2017/04/12 00:39:28 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -124,7 +124,7 @@ tegra_mc_attach(device_t parent, device_
 	MC_WRITE(sc, MC_INTMASK_REG, MC_INT__ALL);
 }
 
-int
+static int
 tegra_mc_intr(void *v)
 {
 	struct tegra_mc_softc * const sc = v;

Reply via email to