linux/drivers/input/keyboard/adp5520-keys.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Keypad driver for Analog Devices ADP5520 MFD PMICs
 *
 * Copyright 2009 Analog Devices Inc.
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/input.h>
#include <linux/mfd/adp5520.h>
#include <linux/slab.h>
#include <linux/device.h>

struct adp5520_keys {};

static void adp5520_keys_report_event(struct adp5520_keys *dev,
					unsigned short keymask, int value)
{}

static int adp5520_keys_notifier(struct notifier_block *nb,
				 unsigned long event, void *data)
{}

static int adp5520_keys_probe(struct platform_device *pdev)
{}

static void adp5520_keys_remove(struct platform_device *pdev)
{}

static struct platform_driver adp5520_keys_driver =;
module_platform_driver();

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