diff options
author | adrian <adrian@FreeBSD.org> | 2016-05-04 06:23:49 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2016-05-04 06:23:49 +0000 |
commit | 890363435903cb2a240f8b71f842bb26632bc4ed (patch) | |
tree | 7980ed6fa8076403ac436dfb4bfd420d60db82a1 | |
parent | 06432ef1273aca67315bdedca252ad83535c313f (diff) | |
download | FreeBSD-src-890363435903cb2a240f8b71f842bb26632bc4ed.zip FreeBSD-src-890363435903cb2a240f8b71f842bb26632bc4ed.tar.gz |
s/struct device */device_t/g
Submitted by: kmacy
-rw-r--r-- | sys/dev/lmc/if_lmc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/lmc/if_lmc.h b/sys/dev/lmc/if_lmc.h index 0121375..357fd88 100644 --- a/sys/dev/lmc/if_lmc.h +++ b/sys/dev/lmc/if_lmc.h @@ -1092,7 +1092,7 @@ struct softc #endif struct callout callout; /* watchdog needs this */ - struct device *dev; /* base device pointer */ + device_t dev; /* base device pointer */ bus_space_tag_t csr_tag; /* bus_space needs this */ bus_space_handle_t csr_handle;/* bus_space_needs this */ void *irq_cookie; /* bus_teardown_intr needs this */ |