#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/err.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/mfd/rohm-generic.h>
#include <linux/clk-provider.h>
#include <linux/clkdev.h>
#include <linux/regmap.h>
#define BD71815_REG_OUT32K …
#define BD71828_REG_OUT32K …
#define BD718XX_REG_OUT32K …
#define CLK_OUT_EN_MASK …
struct bd718xx_clk { … };
static int bd71837_clk_set(struct bd718xx_clk *c, unsigned int status)
{ … }
static void bd71837_clk_disable(struct clk_hw *hw)
{ … }
static int bd71837_clk_enable(struct clk_hw *hw)
{ … }
static int bd71837_clk_is_enabled(struct clk_hw *hw)
{ … }
static const struct clk_ops bd71837_clk_ops = …;
static int bd71837_clk_probe(struct platform_device *pdev)
{ … }
static const struct platform_device_id bd718x7_clk_id[] = …;
MODULE_DEVICE_TABLE(platform, bd718x7_clk_id);
static struct platform_driver bd71837_clk = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;
MODULE_ALIAS(…) …;