blob: 2bc51b82295612a092a195cd4a044f25e89fe752 [file] [log] [blame]
Jamie Iles84e0cdb2011-03-08 20:17:06 +00001/*
2 * Copyright (C) 2004-2006 Atmel Corporation
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8#ifndef __MACB_PDATA_H__
9#define __MACB_PDATA_H__
10
Bartosz Folta83a77e92016-12-14 06:39:15 +000011#include <linux/clk.h>
12
Andy Shevchenkoe018a0c2015-07-24 21:24:04 +030013/**
14 * struct macb_platform_data - platform data for MACB Ethernet
Bartosz Folta83a77e92016-12-14 06:39:15 +000015 * @pclk: platform clock
16 * @hclk: AHB clock
Andy Shevchenkoe018a0c2015-07-24 21:24:04 +030017 */
Jamie Iles84e0cdb2011-03-08 20:17:06 +000018struct macb_platform_data {
Bartosz Folta83a77e92016-12-14 06:39:15 +000019 struct clk *pclk;
20 struct clk *hclk;
Jamie Iles84e0cdb2011-03-08 20:17:06 +000021};
22
23#endif /* __MACB_PDATA_H__ */