mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-28 19:53:09 +02:00
b1f3482e70
Signed-off-by: Jaiganesh Narayanan <jnarayanan@atheros.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26523 3c298f89-4303-0410-b956-a3cf2f4a3e73
23 lines
622 B
C
23 lines
622 B
C
/*
|
|
* Atheros DB120 reference board PCI initialization
|
|
*
|
|
* Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
|
|
*
|
|
* Parts of this file are based on Atheros linux 2.6.31 BSP
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
* by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef _AR71XX_DEV_DB120_PCI_H
|
|
#define _AR71XX_DEV_DB120_PCI_H
|
|
|
|
#if defined(CONFIG_AR71XX_DEV_DB120_PCI)
|
|
void db120_pci_init(void);
|
|
#else
|
|
static inline void db120_pci_init(void) { }
|
|
#endif
|
|
|
|
#endif /* _AR71XX_DEV_DB120_PCI_H */
|