Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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 */
15struct macb_platform_data {
16 struct clk *pclk;
17 struct clk *hclk;
18};
19
20#endif /* __MACB_PDATA_H__ */