// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2000 Takashi Iwai <[email protected]> * * Routines for control of EMU10K1 WaveTable synth */ #include "emu10k1_synth_local.h" #include <linux/init.h> #include <linux/module.h> MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …; MODULE_LICENSE(…) …; /* * create a new hardware dependent device for Emu10k1 */ static int snd_emu10k1_synth_probe(struct device *_dev) { … } static int snd_emu10k1_synth_remove(struct device *_dev) { … } /* * INIT part */ static struct snd_seq_driver emu10k1_synth_driver = …; module_snd_seq_driver(…) …;