linux/drivers/input/misc/cma3000_d0x_i2c.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Implements I2C interface for VTI CMA300_D0x Accelerometer driver
 *
 * Copyright (C) 2010 Texas Instruments
 * Author: Hemanth V <[email protected]>
 */

#include <linux/module.h>
#include <linux/i2c.h>
#include <linux/input/cma3000.h>
#include "cma3000_d0x.h"

static int cma3000_i2c_set(struct device *dev,
			   u8 reg, u8 val, char *msg)
{}

static int cma3000_i2c_read(struct device *dev, u8 reg, char *msg)
{}

static const struct cma3000_bus_ops cma3000_i2c_bops =;

static int cma3000_i2c_probe(struct i2c_client *client)
{}

static void cma3000_i2c_remove(struct i2c_client *client)
{}

static int cma3000_i2c_suspend(struct device *dev)
{}

static int cma3000_i2c_resume(struct device *dev)
{}

static const struct dev_pm_ops cma3000_i2c_pm_ops =;

static const struct i2c_device_id cma3000_i2c_id[] =;

MODULE_DEVICE_TABLE(i2c, cma3000_i2c_id);

static struct i2c_driver cma3000_i2c_driver =;

module_i2c_driver();

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