/*1* This program is free software; you can redistribute it and/or modify it2* under the terms of the GNU General Public License version 2 as published3* by the Free Software Foundation.4*5* Copyright (C) 2010 John Crispin <[email protected]>6*/78#ifndef _LTQ_DEVICES_H__9#define _LTQ_DEVICES_H__1011#include <lantiq_platform.h>12#include <linux/mtd/physmap.h>1314#define IRQ_RES(resname, irq) \15{.name = #resname, .start = (irq), .flags = IORESOURCE_IRQ}1617extern void ltq_register_nor(struct physmap_flash_data *data);18extern void ltq_register_wdt(void);19extern void ltq_register_asc(int port);20extern void ltq_register_pci(struct ltq_pci_data *data);2122#endif232425