linux/sound/firewire/dice/dice-pcm.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * dice_pcm.c - a part of driver for DICE based devices
 *
 * Copyright (c) Clemens Ladisch <[email protected]>
 * Copyright (c) 2014 Takashi Sakamoto <[email protected]>
 */

#include "dice.h"

static int dice_rate_constraint(struct snd_pcm_hw_params *params,
				struct snd_pcm_hw_rule *rule)
{}

static int dice_channels_constraint(struct snd_pcm_hw_params *params,
				    struct snd_pcm_hw_rule *rule)
{}

static int limit_channels_and_rates(struct snd_dice *dice,
				    struct snd_pcm_runtime *runtime,
				    enum amdtp_stream_direction dir,
				    unsigned int index)
{}

static int init_hw_info(struct snd_dice *dice,
			struct snd_pcm_substream *substream)
{}

static int pcm_open(struct snd_pcm_substream *substream)
{}

static int pcm_close(struct snd_pcm_substream *substream)
{}

static int pcm_hw_params(struct snd_pcm_substream *substream,
			 struct snd_pcm_hw_params *hw_params)
{}

static int pcm_hw_free(struct snd_pcm_substream *substream)
{}

static int capture_prepare(struct snd_pcm_substream *substream)
{}
static int playback_prepare(struct snd_pcm_substream *substream)
{}

static int capture_trigger(struct snd_pcm_substream *substream, int cmd)
{}
static int playback_trigger(struct snd_pcm_substream *substream, int cmd)
{}

static snd_pcm_uframes_t capture_pointer(struct snd_pcm_substream *substream)
{}
static snd_pcm_uframes_t playback_pointer(struct snd_pcm_substream *substream)
{}

static int capture_ack(struct snd_pcm_substream *substream)
{}

static int playback_ack(struct snd_pcm_substream *substream)
{}

int snd_dice_create_pcm(struct snd_dice *dice)
{}