linux/drivers/mmc/host/sdhci-npcm.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * NPCM SDHC MMC host controller driver.
 *
 * Copyright (c) 2023 Nuvoton Technology corporation.
 */

#include <linux/clk.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/mmc/host.h>
#include <linux/mmc/mmc.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/of.h>

#include "sdhci-pltfm.h"

static const struct sdhci_pltfm_data npcm7xx_sdhci_pdata =;

static const struct sdhci_pltfm_data npcm8xx_sdhci_pdata =;

static int npcm_sdhci_probe(struct platform_device *pdev)
{}

static const struct of_device_id npcm_sdhci_of_match[] =;
MODULE_DEVICE_TABLE(of, npcm_sdhci_of_match);

static struct platform_driver npcm_sdhci_driver =;
module_platform_driver();

MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();