linux/drivers/gpio/gpio-bd71828.c

// SPDX-License-Identifier: GPL-2.0-only
// Copyright (C) 2018 ROHM Semiconductors

#include <linux/gpio/driver.h>
#include <linux/mfd/rohm-bd71828.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>

#define GPIO_OUT_REG(off)
#define HALL_GPIO_OFFSET

struct bd71828_gpio {};

static void bd71828_gpio_set(struct gpio_chip *chip, unsigned int offset,
			     int value)
{}

static int bd71828_gpio_get(struct gpio_chip *chip, unsigned int offset)
{}

static int bd71828_gpio_set_config(struct gpio_chip *chip, unsigned int offset,
				   unsigned long config)
{}

static int bd71828_get_direction(struct gpio_chip *chip, unsigned int offset)
{}

static int bd71828_probe(struct platform_device *pdev)
{}

static struct platform_driver bd71828_gpio =;

module_platform_driver();

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