mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 06:04:14 +08:00
7745b25128
Remove the platform driver and platform data for the audio codec. A DT node will replace it. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Link: https://lkml.kernel.org/r/1399141819-23924-3-git-send-email-andrew@lunn.ch Signed-off-by: Jason Cooper <jason@lakedaemon.net>
27 lines
569 B
C
27 lines
569 B
C
/*
|
|
* HP T5325 Board Setup
|
|
*
|
|
* Copyright (C) 2014
|
|
*
|
|
* Andrew Lunn <andrew@lunn.ch>
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
#include "board.h"
|
|
|
|
static struct platform_device hp_t5325_audio_device = {
|
|
.name = "t5325-audio",
|
|
.id = -1,
|
|
};
|
|
|
|
void __init t5325_init(void)
|
|
{
|
|
platform_device_register(&hp_t5325_audio_device);
|
|
}
|