Path: blob/master/arch/m68k/platform/coldfire/pinmux.c
10818 views
/*1* Coldfire generic GPIO pinmux support.2*3* (C) Copyright 2009, Steven King <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; version 2 of the License.8*9* This program is distributed in the hope that it will be useful,10* but WITHOUT ANY WARRANTY; without even the implied warranty of11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12* GNU General Public License for more details.13*14*/1516#include <linux/kernel.h>1718#include <asm/pinmux.h>1920int mcf_pinmux_request(unsigned pinmux, unsigned func)21{22return 0;23}2425void mcf_pinmux_release(unsigned pinmux, unsigned func)26{27}282930