linux/sound/firewire/fireface/ff.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * ff.c - a part of driver for RME Fireface series
 *
 * Copyright (c) 2015-2017 Takashi Sakamoto
 */

#include "ff.h"

#define OUI_RME

MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();

static void name_card(struct snd_ff *ff)
{}

static void ff_card_free(struct snd_card *card)
{}

static int snd_ff_probe(struct fw_unit *unit, const struct ieee1394_device_id *entry)
{}

static void snd_ff_update(struct fw_unit *unit)
{}

static void snd_ff_remove(struct fw_unit *unit)
{}

static const struct snd_ff_spec spec_ff800 =;

static const struct snd_ff_spec spec_ff400 =;

static const struct snd_ff_spec spec_ucx =;

static const struct snd_ff_spec spec_ufx_802 =;

static const struct ieee1394_device_id snd_ff_id_table[] =;
MODULE_DEVICE_TABLE(ieee1394, snd_ff_id_table);

static struct fw_driver ff_driver =;

static int __init snd_ff_init(void)
{}

static void __exit snd_ff_exit(void)
{}

module_init();
module_exit(snd_ff_exit);