SVN-Revision: 9327master
parent
8c96b88b25
commit
9dc51096e6
@ -1,5 +1,5 @@ |
||||
#
|
||||
# Makefile for the RDC321x specific parts of the kernel
|
||||
#
|
||||
obj-$(CONFIG_X86_RDC) := gpio.o platform.o wdt.o
|
||||
obj-$(CONFIG_X86_RDC) := gpio.o platform.o wdt.o setup.o
|
||||
|
||||
|
@ -0,0 +1,14 @@ |
||||
/*
|
||||
* 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"; |
||||
} |
@ -0,0 +1,18 @@ |
||||
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
|
||||
index 55f307f..4a1aa34 100644
|
||||
--- a/include/linux/pci_ids.h
|
||||
+++ b/include/linux/pci_ids.h
|
||||
@@ -2076,6 +2076,13 @@
|
||||
#define PCI_DEVICE_ID_HERC_WIN 0x5732
|
||||
#define PCI_DEVICE_ID_HERC_UNI 0x5832
|
||||
|
||||
+#define PCI_VENDOR_ID_RDC 0x17f3
|
||||
+#define PCI_DEVICE_ID_RDC_R6020 0x6020
|
||||
+#define PCI_DEVICE_ID_RDC_R6030 0x6030
|
||||
+#define PCI_DEVICE_ID_RDC_R6040 0x6040
|
||||
+#define PCI_DEVICE_ID_RDC_R6060 0x6060
|
||||
+#define PCI_DEVICE_ID_RDC_R6061 0x6061
|
||||
+
|
||||
#define PCI_VENDOR_ID_SITECOM 0x182d
|
||||
#define PCI_DEVICE_ID_SITECOM_DC105V2 0x3069
|
||||
|
Loading…
Reference in new issue