// SPDX-License-Identifier: GPL-2.0-only /* * wm8731.c -- WM8731 ALSA SoC Audio driver * * Copyright 2005 Openedhand Ltd. * Copyright 2006-12 Wolfson Microelectronics, plc * * Author: Richard Purdie <[email protected]> * * Based on wm8753.c by Liam Girdwood */ #include <linux/spi/spi.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include "wm8731.h" static const struct of_device_id wm8731_of_match[] = …; MODULE_DEVICE_TABLE(of, wm8731_of_match); static int wm8731_spi_probe(struct spi_device *spi) { … } static struct spi_driver wm8731_spi_driver = …; module_spi_driver(…) …; MODULE_DESCRIPTION(…) …; MODULE_AUTHOR(…) …; MODULE_LICENSE(…) …;