From c91680190a9545c6e776f652b5aeaeb5b9a108af Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 3 Sep 2002 11:18:35 +0000 Subject: [PATCH] Style: move a global variable up to the top of the file. --- sys/dev/puc/puc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/dev/puc/puc.c b/sys/dev/puc/puc.c index e1b983028391..c8dbb822419c 100644 --- a/sys/dev/puc/puc.c +++ b/sys/dev/puc/puc.c @@ -112,6 +112,8 @@ static int puc_find_free_unit(char *); static void puc_print_resource_list(struct resource_list *); #endif +devclass_t puc_devclass; + static int puc_port_bar_index(struct puc_softc *sc, int bar) { @@ -506,6 +508,3 @@ puc_read_ivar(device_t dev, device_t child, int index, uintptr_t *result) } return (0); } - -devclass_t puc_devclass; -