mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 20:19:48 +02:00
15 lines
247 B
C
15 lines
247 B
C
|
/*
|
||
|
* Machine specific setup for generic
|
||
|
*/
|
||
|
|
||
|
#include <linux/init.h>
|
||
|
#include <linux/interrupt.h>
|
||
|
#include <asm/arch_hooks.h>
|
||
|
#include <asm/io.h>
|
||
|
#include <asm/setup.h>
|
||
|
|
||
|
char * __init machine_specific_memory_setup(void)
|
||
|
{
|
||
|
return "RDC R-321x";
|
||
|
}
|