| .. | .. |
|---|
| 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> |
|---|
| .. | .. |
|---|
| 251 | 247 | const struct snd_pcm_ops snd_line6_capture_ops = { |
|---|
| 252 | 248 | .open = snd_line6_capture_open, |
|---|
| 253 | 249 | .close = snd_line6_capture_close, |
|---|
| 254 | | - .ioctl = snd_pcm_lib_ioctl, |
|---|
| 255 | 250 | .hw_params = snd_line6_hw_params, |
|---|
| 256 | 251 | .hw_free = snd_line6_hw_free, |
|---|
| 257 | 252 | .prepare = snd_line6_prepare, |
|---|