// SPDX-License-Identifier: GPL-2.0-only /* * SSM2602 SPI audio driver * * Copyright 2014 Analog Devices Inc. */ #include <linux/module.h> #include <linux/spi/spi.h> #include <linux/regmap.h> #include <sound/soc.h> #include "ssm2602.h" static int ssm2602_spi_probe(struct spi_device *spi) { … } static const struct of_device_id ssm2602_of_match[] = …; MODULE_DEVICE_TABLE(of, ssm2602_of_match); static struct spi_driver ssm2602_spi_driver = …; module_spi_driver(…) …; MODULE_DESCRIPTION(…) …; MODULE_AUTHOR(…) …; MODULE_LICENSE(…) …;