Ignore:
Timestamp:
Mar 18, 2021, 8:57:36 PM (4 years ago)
Author:
David Azarewicz
Message:

Merge changes from Paul's uniaud32next branch.

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • GPL/trunk/alsa-kernel/synth/util_mem.c

    r399 r679  
     1// SPDX-License-Identifier: GPL-2.0-or-later
    12/*
    23 *  Copyright (C) 2000 Takashi Iwai <tiwai@suse.de>
    34 *
    45 *  Generic memory management routines for soundcard memory allocation
    5  *
    6  *   This program is free software; you can redistribute it and/or modify
    7  *   it under the terms of the GNU General Public License as published by
    8  *   the Free Software Foundation; either version 2 of the License, or
    9  *   (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 of
    13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    14  *   GNU General Public License for more details.
    15  *
    16  *   You should have received a copy of the GNU General Public License
    17  *   along with this program; if not, write to the Free Software
    18  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
    196 */
    207
     
    229#include <linux/init.h>
    2310#include <linux/slab.h>
     11#include <linux/module.h>
    2412#include <sound/core.h>
    2513#include <sound/util_mem.h>
     
    193181EXPORT_SYMBOL(__snd_util_mem_free);
    194182EXPORT_SYMBOL(__snd_util_memblk_new);
    195 
    196 /*
    197  *  INIT part
    198  */
    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.