diff options
| author | Ed Schouten <ed@FreeBSD.org> | 2011-12-13 14:06:01 +0000 |
|---|---|---|
| committer | Ed Schouten <ed@FreeBSD.org> | 2011-12-13 14:06:01 +0000 |
| commit | 75da3c1a9be663083e48f931994c1caae3f9b7a9 (patch) | |
| tree | 6511ce1e1f47db206a8f3a23f568bfc5fc44a836 /sys/dev/fdc | |
| parent | 9910b854c628e6c2550e5b9644930e076c2b7403 (diff) | |
Notes
Diffstat (limited to 'sys/dev/fdc')
| -rw-r--r-- | sys/dev/fdc/fdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c index 00cdcd672b87..52260c140d9b 100644 --- a/sys/dev/fdc/fdc.c +++ b/sys/dev/fdc/fdc.c @@ -314,14 +314,14 @@ fdsettype(struct fd_data *fd, struct fd_type *ft) /* * Bus space handling (access to low-level IO). */ -__inline static void +static inline void fdregwr(struct fdc_data *fdc, int reg, uint8_t v) { bus_space_write_1(fdc->iot, fdc->ioh[reg], fdc->ioff[reg], v); } -__inline static uint8_t +static inline uint8_t fdregrd(struct fdc_data *fdc, int reg) { |
