#ifndef _LINUXKPI_LINUX_MFD_CORE_H_
#define _LINUXKPI_LINUX_MFD_CORE_H_
#include <linux/platform_device.h>
#include <linux/ioport.h>
#include <linux/kernel.h>
struct resource;
struct mfd_cell {
const char *name;
void *platform_data;
size_t pdata_size;
int num_resources;
const struct resource *resources;
};
static inline int
mfd_add_hotplug_devices(struct device *parent,
const struct mfd_cell *cells, int n_devs)
{
pr_debug("%s: TODO\n", __func__);
return (0);
}
static inline void
mfd_remove_devices(struct device *parent)
{
pr_debug("%s: TODO\n", __func__);
}
#endif