| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Line 6 Linux USB driver |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at) |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or |
|---|
| 7 | | - * modify it under the terms of the GNU General Public License as |
|---|
| 8 | | - * published by the Free Software Foundation, version 2. |
|---|
| 9 | | - * |
|---|
| 10 | 6 | */ |
|---|
| 11 | 7 | |
|---|
| 12 | 8 | #include <linux/slab.h> |
|---|
| .. | .. |
|---|
| 396 | 392 | const struct snd_pcm_ops snd_line6_playback_ops = { |
|---|
| 397 | 393 | .open = snd_line6_playback_open, |
|---|
| 398 | 394 | .close = snd_line6_playback_close, |
|---|
| 399 | | - .ioctl = snd_pcm_lib_ioctl, |
|---|
| 400 | 395 | .hw_params = snd_line6_hw_params, |
|---|
| 401 | 396 | .hw_free = snd_line6_hw_free, |
|---|
| 402 | 397 | .prepare = snd_line6_prepare, |
|---|