Changeset 679 for GPL/trunk/alsa-kernel/synth/util_mem.c
- Timestamp:
- Mar 18, 2021, 8:57:36 PM (4 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
- Property svn:mergeinfo changed
/GPL/branches/uniaud32-linux-3.2.102 (added) merged: 611-614 /GPL/branches/uniaud32-next (added) merged: 615-678
- Property svn:mergeinfo changed
-
GPL/trunk/alsa-kernel/synth/util_mem.c
r399 r679 1 // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * Copyright (C) 2000 Takashi Iwai <tiwai@suse.de> 3 4 * 4 5 * Generic memory management routines for soundcard memory allocation 5 *6 * This program is free software; you can redistribute it and/or modify7 * it under the terms of the GNU General Public License as published by8 * the Free Software Foundation; either version 2 of the License, or9 * (at your option) any later version.10 *11 * This program is distributed in the hope that it will be useful,12 * but WITHOUT ANY WARRANTY; without even the implied warranty of13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 * GNU General Public License for more details.15 *16 * You should have received a copy of the GNU General Public License17 * along with this program; if not, write to the Free Software18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA19 6 */ 20 7 … … 22 9 #include <linux/init.h> 23 10 #include <linux/slab.h> 11 #include <linux/module.h> 24 12 #include <sound/core.h> 25 13 #include <sound/util_mem.h> … … 193 181 EXPORT_SYMBOL(__snd_util_mem_free); 194 182 EXPORT_SYMBOL(__snd_util_memblk_new); 195 196 /*197 * INIT part198 */199 200 static int __init alsa_util_mem_init(void)201 {202 return 0;203 }204 205 static void __exit alsa_util_mem_exit(void)206 {207 }208 209 module_init(alsa_util_mem_init)210 module_exit(alsa_util_mem_exit)
Note:
See TracChangeset
for help on using the changeset viewer.