adau7118-hw.c (1079B)
1// SPDX-License-Identifier: GPL-2.0 2// 3// Analog Devices ADAU7118 8 channel PDM-to-I2S/TDM Converter Standalone Hw 4// driver 5// 6// Copyright 2019 Analog Devices Inc. 7 8#include <linux/module.h> 9#include <linux/mod_devicetable.h> 10#include <linux/platform_device.h> 11 12#include "adau7118.h" 13 14static int adau7118_probe_hw(struct platform_device *pdev) 15{ 16 return adau7118_probe(&pdev->dev, NULL, true); 17} 18 19static const struct of_device_id adau7118_of_match[] = { 20 { .compatible = "adi,adau7118" }, 21 {} 22}; 23MODULE_DEVICE_TABLE(of, adau7118_of_match); 24 25static const struct platform_device_id adau7118_id[] = { 26 { .name = "adau7118" }, 27 { } 28}; 29MODULE_DEVICE_TABLE(platform, adau7118_id); 30 31static struct platform_driver adau7118_driver_hw = { 32 .driver = { 33 .name = "adau7118", 34 .of_match_table = adau7118_of_match, 35 }, 36 .probe = adau7118_probe_hw, 37 .id_table = adau7118_id, 38}; 39module_platform_driver(adau7118_driver_hw); 40 41MODULE_AUTHOR("Nuno Sa <nuno.sa@analog.com>"); 42MODULE_DESCRIPTION("ADAU7118 8 channel PDM-to-I2S/TDM Converter driver for standalone hw mode"); 43MODULE_LICENSE("GPL");