opl4.h 459 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. #ifndef __SOUND_OPL4_H
  3. #define __SOUND_OPL4_H
  4. /*
  5. * Global definitions for the OPL4 driver
  6. * Copyright (c) 2003 by Clemens Ladisch <[email protected]>
  7. */
  8. #include <sound/opl3.h>
  9. struct snd_opl4;
  10. extern int snd_opl4_create(struct snd_card *card,
  11. unsigned long fm_port, unsigned long pcm_port,
  12. int seq_device,
  13. struct snd_opl3 **opl3, struct snd_opl4 **opl4);
  14. #endif /* __SOUND_OPL4_H */