Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: 2ccdd1b13c591d306f0401d98dedc4bdcd02b421 authored by Linus Torvalds on 13 August 2023, 18:29:55 UTC
Linux 6.5-rc6
Tip revision: 2ccdd1b
i8254.h
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (C) William Breathitt Gray */
#ifndef _I8254_H_
#define _I8254_H_

struct device;
struct regmap;

/**
 * struct i8254_regmap_config - Configuration for the register map of an i8254
 * @parent:	parent device
 * @map:	regmap for the i8254
 */
struct i8254_regmap_config {
	struct device *parent;
	struct regmap *map;
};

int devm_i8254_regmap_register(struct device *dev, const struct i8254_regmap_config *config);

#endif /* _I8254_H_ */
back to top