/*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_PROM_H__9#define _LTQ_PROM_H__1011#define LTQ_SYS_TYPE_LEN 0x1001213struct ltq_soc_info {14unsigned char *name;15unsigned int rev;16unsigned int partnum;17unsigned int type;18unsigned char sys_type[LTQ_SYS_TYPE_LEN];19};2021extern void ltq_soc_detect(struct ltq_soc_info *i);22extern void ltq_soc_setup(void);2324#endif252627