/*1* Atheros AR71XX/AR724X/AR913X SPI controller device2*3* Copyright (C) 2008-2010 Gabor Juhos <[email protected]>4* Copyright (C) 2008 Imre Kaloz <[email protected]>5*6* This program is free software; you can redistribute it and/or modify it7* under the terms of the GNU General Public License version 2 as published8* by the Free Software Foundation.9*/1011#ifndef _ATH79_DEV_SPI_H12#define _ATH79_DEV_SPI_H1314#include <linux/spi/spi.h>15#include <asm/mach-ath79/ath79_spi_platform.h>1617void ath79_register_spi(struct ath79_spi_platform_data *pdata,18struct spi_board_info const *info,19unsigned n);2021#endif /* _ATH79_DEV_SPI_H */222324