summaryrefslogtreecommitdiffstats
path: root/target/linux/rdc/files/arch/i386/kernel/cpu/rdc.c
blob: f4b9083bfcbba8b57e842de9e5e41bdd29435543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <linux/init.h>
#include <linux/bitops.h>
#include <linux/mm.h>
#include <asm/io.h>
#include <asm/processor.h>

#include "cpu.h"

static struct cpu_dev rdc_cpu_dev __cpuinitdata = {
        .c_vendor       = "RDC",
        .c_models = {
                { .vendor = X86_VENDOR_RDC, .family = 4, .model_names =
                  {
                          [0] = "R861x(-G)",
                  }
                },
        },
};

int __init rdc_init_cpu(void)
{
        cpu_devs[X86_VENDOR_RDC] = &rdc_cpu_dev;
        return 0;
}