Linux Audio

Check our new training course

Loading...
v6.2
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 * SH7720 Pinmux
 4 *
 5 *  Copyright (C) 2008  Magnus Damm
 6 */
 7
 8#include <linux/bug.h>
 9#include <linux/init.h>
10#include <linux/kernel.h>
11#include <linux/ioport.h>
12#include <cpu/pfc.h>
13
14static struct resource sh7720_pfc_resources[] = {
15	[0] = {
16		.start	= 0xa4050100,
17		.end	= 0xa405016f,
18		.flags	= IORESOURCE_MEM,
19	},
20};
21
22static int __init plat_pinmux_setup(void)
23{
24	return sh_pfc_register("pfc-sh7720", sh7720_pfc_resources,
25			       ARRAY_SIZE(sh7720_pfc_resources));
26}
27arch_initcall(plat_pinmux_setup);
v6.13.7
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 * SH7720 Pinmux
 4 *
 5 *  Copyright (C) 2008  Magnus Damm
 6 */
 7
 8#include <linux/bug.h>
 9#include <linux/init.h>
10#include <linux/kernel.h>
11#include <linux/ioport.h>
12#include <cpu/pfc.h>
13
14static struct resource sh7720_pfc_resources[] = {
15	[0] = {
16		.start	= 0xa4050100,
17		.end	= 0xa405016f,
18		.flags	= IORESOURCE_MEM,
19	},
20};
21
22static int __init plat_pinmux_setup(void)
23{
24	return sh_pfc_register("pfc-sh7720", sh7720_pfc_resources,
25			       ARRAY_SIZE(sh7720_pfc_resources));
26}
27arch_initcall(plat_pinmux_setup);