linux/include/linux/mfd/ocelot.h

/* SPDX-License-Identifier: GPL-2.0 OR MIT */
/* Copyright 2022 Innovative Advantage Inc. */

#ifndef _LINUX_MFD_OCELOT_H
#define _LINUX_MFD_OCELOT_H

#include <linux/err.h>
#include <linux/errno.h>
#include <linux/ioport.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/types.h>

struct resource;

static inline struct regmap *
ocelot_regmap_from_resource_optional(struct platform_device *pdev,
				     unsigned int index,
				     const struct regmap_config *config)
{}

static inline struct regmap *
ocelot_regmap_from_resource(struct platform_device *pdev, unsigned int index,
			    const struct regmap_config *config)
{}

#endif