soc-devres.c (6b16f5d12202a23d875915349cc031c07fe1b3ec) | soc-devres.c (9e14035c7fac144f31a822f0034fe5ed79c9ef8a) |
---|---|
1/* 2 * soc-devres.c -- ALSA SoC Audio Layer devres functions 3 * 4 * Copyright (C) 2013 Linaro Ltd 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License as published by the 8 * Free Software Foundation; either version 2 of the License, or (at your 9 * option) any later version. 10 */ | 1// SPDX-License-Identifier: GPL-2.0+ 2// 3// soc-devres.c -- ALSA SoC Audio Layer devres functions 4// 5// Copyright (C) 2013 Linaro Ltd |
11 12#include <linux/module.h> 13#include <linux/moduleparam.h> 14#include <sound/soc.h> 15#include <sound/dmaengine_pcm.h> 16 17static void devm_component_release(struct device *dev, void *res) 18{ --- 109 unchanged lines hidden --- | 6 7#include <linux/module.h> 8#include <linux/moduleparam.h> 9#include <sound/soc.h> 10#include <sound/dmaengine_pcm.h> 11 12static void devm_component_release(struct device *dev, void *res) 13{ --- 109 unchanged lines hidden --- |