]> xenbits.xensource.com Git - people/julieng/freebsd.git/commitdiff
xen/intr: Don't need to export xen_intr_pcpu
authorJulien Grall <julien.grall@linaro.org>
Sat, 19 Apr 2014 21:34:43 +0000 (22:34 +0100)
committerJulien Grall <julien.grall@citrix.com>
Fri, 16 Oct 2015 16:31:43 +0000 (17:31 +0100)
xen_intr_pcpu is only used within sys/xen/xen_intr.c

sys/x86/xen/xen_intr.c

index 4414aff93860786f7fb11466cf906d6db141726a..b49376bd7e54d738dbccf2eac835f231f11122ad 100644 (file)
@@ -105,7 +105,7 @@ struct xen_intr_pcpu_data {
  * Start the scan at port 0 by initializing the last scanned
  * location as the highest numbered event channel port.
  */
-DPCPU_DEFINE(struct xen_intr_pcpu_data, xen_intr_pcpu) = {
+static DPCPU_DEFINE(struct xen_intr_pcpu_data, xen_intr_pcpu) = {
        .last_processed_l1i = LONG_BIT - 1,
        .last_processed_l2i = LONG_BIT - 1
 };