From 170c8c7fa90b454051a31045c3acf68dab35d55b Mon Sep 17 00:00:00 2001 From: Stephen Neuendorffer Date: Wed, 9 Jan 2008 06:35:06 +1100 Subject: [PATCH] --- yaml --- r: 81229 b: refs/heads/master c: faa6511109026f1549619ebce972be00d1b921ce h: refs/heads/master i: 81227: 3d7d1e3c61ea6c419f6a790332e9dd4f1fa8e612 v: v3 --- [refs] | 2 +- trunk/arch/powerpc/platforms/40x/virtex.c | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index 56fba62efe2c..766fd11548d7 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 021a607c2fe59cc5c37fd67813b4a61fd2f7e61b +refs/heads/master: faa6511109026f1549619ebce972be00d1b921ce diff --git a/trunk/arch/powerpc/platforms/40x/virtex.c b/trunk/arch/powerpc/platforms/40x/virtex.c index 43fcc8e9f7d0..88b66444dfb2 100644 --- a/trunk/arch/powerpc/platforms/40x/virtex.c +++ b/trunk/arch/powerpc/platforms/40x/virtex.c @@ -15,9 +15,19 @@ #include #include +static struct of_device_id xilinx_of_bus_ids[] __initdata = { + { .compatible = "xlnx,plb-v46-1.00.a", }, + { .compatible = "xlnx,plb-v34-1.01.a", }, + { .compatible = "xlnx,plb-v34-1.02.a", }, + { .compatible = "xlnx,opb-v20-1.10.c", }, + { .compatible = "xlnx,dcr-v29-1.00.a", }, + { .compatible = "xlnx,compound", }, + {} +}; + static int __init virtex_device_probe(void) { - of_platform_bus_probe(NULL, NULL, NULL); + of_platform_bus_probe(NULL, xilinx_of_bus_ids, NULL); return 0; }