/* * Freescale STMP378X Rotary Encoder module pin multiplexing * * Author: Drew Benedetti * * Copyright 2008-2009 Freescale Semiconductor, Inc. All Rights Reserved. * Copyright 2008 Embedded Alley Solutions, Inc All Rights Reserved. */ /* * The code contained herein is licensed under the GNU General Public * License. You may obtain a copy of the GNU General Public License * Version 2 or later at the following locations: * * http://www.opensource.org/licenses/gpl-license.html * http://www.gnu.org/copyleft/gpl.html */ #include #include #include #include #include "pinmux.h" #define TITLE "stmp3xxx-rotdec" int rotdec_pinmux_request(void) { return stmp3xxx_request_pin_group(&rotdec_pins, TITLE); } EXPORT_SYMBOL_GPL(rotdec_pinmux_request); void rotdec_pinmux_free(void) { stmp3xxx_release_pin_group(&spdif_pins, TITLE); } EXPORT_SYMBOL_GPL(rotdec_pinmux_free); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Drew Benedetti ");