diff options
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/vx_core.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/sound/vx_core.h b/include/sound/vx_core.h index a7e29933f2d0..7a60a3888667 100644 --- a/include/sound/vx_core.h +++ b/include/sound/vx_core.h | |||
@@ -233,37 +233,37 @@ irqreturn_t snd_vx_irq_handler(int irq, void *dev, struct pt_regs *regs); | |||
233 | /* | 233 | /* |
234 | * lowlevel functions | 234 | * lowlevel functions |
235 | */ | 235 | */ |
236 | inline static int vx_test_and_ack(vx_core_t *chip) | 236 | static inline int vx_test_and_ack(vx_core_t *chip) |
237 | { | 237 | { |
238 | snd_assert(chip->ops->test_and_ack, return -ENXIO); | 238 | snd_assert(chip->ops->test_and_ack, return -ENXIO); |
239 | return chip->ops->test_and_ack(chip); | 239 | return chip->ops->test_and_ack(chip); |
240 | } | 240 | } |
241 | 241 | ||
242 | inline static void vx_validate_irq(vx_core_t *chip, int enable) | 242 | static inline void vx_validate_irq(vx_core_t *chip, int enable) |
243 | { | 243 | { |
244 | snd_assert(chip->ops->validate_irq, return); | 244 | snd_assert(chip->ops->validate_irq, return); |
245 | chip->ops->validate_irq(chip, enable); | 245 | chip->ops->validate_irq(chip, enable); |
246 | } | 246 | } |
247 | 247 | ||
248 | inline static unsigned char snd_vx_inb(vx_core_t *chip, int reg) | 248 | static inline unsigned char snd_vx_inb(vx_core_t *chip, int reg) |
249 | { | 249 | { |
250 | snd_assert(chip->ops->in8, return 0); | 250 | snd_assert(chip->ops->in8, return 0); |
251 | return chip->ops->in8(chip, reg); | 251 | return chip->ops->in8(chip, reg); |
252 | } | 252 | } |
253 | 253 | ||
254 | inline static unsigned int snd_vx_inl(vx_core_t *chip, int reg) | 254 | static inline unsigned int snd_vx_inl(vx_core_t *chip, int reg) |
255 | { | 255 | { |
256 | snd_assert(chip->ops->in32, return 0); | 256 | snd_assert(chip->ops->in32, return 0); |
257 | return chip->ops->in32(chip, reg); | 257 | return chip->ops->in32(chip, reg); |
258 | } | 258 | } |
259 | 259 | ||
260 | inline static void snd_vx_outb(vx_core_t *chip, int reg, unsigned char val) | 260 | static inline void snd_vx_outb(vx_core_t *chip, int reg, unsigned char val) |
261 | { | 261 | { |
262 | snd_assert(chip->ops->out8, return); | 262 | snd_assert(chip->ops->out8, return); |
263 | chip->ops->out8(chip, reg, val); | 263 | chip->ops->out8(chip, reg, val); |
264 | } | 264 | } |
265 | 265 | ||
266 | inline static void snd_vx_outl(vx_core_t *chip, int reg, unsigned int val) | 266 | static inline void snd_vx_outl(vx_core_t *chip, int reg, unsigned int val) |
267 | { | 267 | { |
268 | snd_assert(chip->ops->out32, return); | 268 | snd_assert(chip->ops->out32, return); |
269 | chip->ops->out32(chip, reg, val); | 269 | chip->ops->out32(chip, reg, val); |
@@ -303,14 +303,14 @@ int snd_vx_check_reg_bit(vx_core_t *chip, int reg, int mask, int bit, int time); | |||
303 | /* | 303 | /* |
304 | * pseudo-DMA transfer | 304 | * pseudo-DMA transfer |
305 | */ | 305 | */ |
306 | inline static void vx_pseudo_dma_write(vx_core_t *chip, snd_pcm_runtime_t *runtime, | 306 | static inline void vx_pseudo_dma_write(vx_core_t *chip, snd_pcm_runtime_t *runtime, |
307 | vx_pipe_t *pipe, int count) | 307 | vx_pipe_t *pipe, int count) |
308 | { | 308 | { |
309 | snd_assert(chip->ops->dma_write, return); | 309 | snd_assert(chip->ops->dma_write, return); |
310 | chip->ops->dma_write(chip, runtime, pipe, count); | 310 | chip->ops->dma_write(chip, runtime, pipe, count); |
311 | } | 311 | } |
312 | 312 | ||
313 | inline static void vx_pseudo_dma_read(vx_core_t *chip, snd_pcm_runtime_t *runtime, | 313 | static inline void vx_pseudo_dma_read(vx_core_t *chip, snd_pcm_runtime_t *runtime, |
314 | vx_pipe_t *pipe, int count) | 314 | vx_pipe_t *pipe, int count) |
315 | { | 315 | { |
316 | snd_assert(chip->ops->dma_read, return); | 316 | snd_assert(chip->ops->dma_read, return); |