]> Git Repo - linux.git/blob - include/linux/platform_data/macb.h
Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux.git] / include / linux / platform_data / macb.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2004-2006 Atmel Corporation
4  */
5 #ifndef __MACB_PDATA_H__
6 #define __MACB_PDATA_H__
7
8 #include <linux/clk.h>
9
10 /**
11  * struct macb_platform_data - platform data for MACB Ethernet
12  * @pclk:               platform clock
13  * @hclk:               AHB clock
14  */
15 struct macb_platform_data {
16         struct clk      *pclk;
17         struct clk      *hclk;
18 };
19
20 #endif /* __MACB_PDATA_H__ */
This page took 0.027093 seconds and 4 git commands to generate.