diff options
author | Stephen Neuendorffer <stephen.neuendorffer@xilinx.com> | 2008-01-09 06:35:05 +1100 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2008-02-06 10:23:21 -0700 |
commit | 0e349b0e2d90eb1bb76d16c48d0127feebfeeb89 (patch) | |
tree | c09f26f4bae9a5431c24c105e1424d035a28b384 /arch/powerpc | |
parent | 911a3175997000c1fcddb2013aaa5fbbee79f0f0 (diff) | |
download | blackbird-op-linux-0e349b0e2d90eb1bb76d16c48d0127feebfeeb89.tar.gz blackbird-op-linux-0e349b0e2d90eb1bb76d16c48d0127feebfeeb89.zip |
[POWERPC] Xilinx: Update compatible to use values generated by BSP generator.
Mainly, this involves two changes:
1) xilinx->xlnx (recognized standard is to use the stock ticker)
2) In order to have the device tree focus on describing what the
hardware is as exactly as possible, the compatible strings contain the
full IP name and IP version.
Signed-off-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com>
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/40x/virtex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/40x/virtex.c b/arch/powerpc/platforms/40x/virtex.c index 88b66444dfb2..0422590040db 100644 --- a/arch/powerpc/platforms/40x/virtex.c +++ b/arch/powerpc/platforms/40x/virtex.c @@ -37,7 +37,7 @@ static int __init virtex_probe(void) { unsigned long root = of_get_flat_dt_root(); - if (!of_flat_dt_is_compatible(root, "xilinx,virtex")) + if (!of_flat_dt_is_compatible(root, "xlnx,virtex")) return 0; return 1; |