/*
* Simple character interface to GPIOs. Allows you to read/write values and
* control the direction. Maybe add wakeup when gpio framework supports it ...
*
* based on the work of "Mike Frysinger <vapier@gentoo.org>"
*
* Adapted to drive the STM32 MCU, GPIO Port F PINs
*
* Copyright 2008 Analog Devices Inc.
* Licensed under the GPL-2 or later.
*/#ifndef __CONFIG_H#define __CONFIG_H#include <linux/cdev.h>#include <linux/device.h>#include <linux/errno.h>#include <linux/fs.h>#include <linux/kernel.h>#include <linux/module.h>#include <linux/platform_device.h>#include <linux/types.h>#include<linux/module.h> #include<linux/init.h> #include<linux/cdev.h> #include<linux/fs.h> #include<linux/io.h> /* writel */ #includ