linux/drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper.c

// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2013 Intel Corporation. All Rights Reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 *
 */
#include <linux/i2c.h>
#include <linux/firmware.h>
#include <linux/device.h>
#include <linux/export.h>
#include "../include/linux/libmsrlisthelper.h"
#include <linux/module.h>
#include <linux/slab.h>

/* Tagged binary data container structure definitions. */
struct tbd_header {} __packed;

struct tbd_record_header {} __packed;

struct tbd_data_record_header {} __packed;

#define TBD_CLASS_DRV_ID

static int set_msr_configuration(struct i2c_client *client, uint8_t *bufptr,
				 unsigned int size)
{}

static int parse_and_apply(struct i2c_client *client, uint8_t *buffer,
			   unsigned int size)
{}

int apply_msr_data(struct i2c_client *client, const struct firmware *fw)
{}
EXPORT_SYMBOL_GPL();

int load_msr_list(struct i2c_client *client, char *name,
		  const struct firmware **fw)
{}
EXPORT_SYMBOL_GPL();

void release_msr_list(struct i2c_client *client, const struct firmware *fw)
{}
EXPORT_SYMBOL_GPL();

static int init_msrlisthelper(void)
{}

static void exit_msrlisthelper(void)
{}

module_init();
module_exit(exit_msrlisthelper);

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