diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-03-17 16:23:56 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-03-20 04:16:34 -0500 |
commit | b5e7ae5dd034c2c0ed75c31fca04a805097817bc (patch) | |
tree | 5dc785f198f08502d99fa95dd0714b319f51e1c5 /drivers | |
parent | 7a1ac5264108fc3ed22d17a3cdd76212ed1666d1 (diff) |
[SPARC64] bbc_i2c: Fix cpu check and add missing module license.
Should allow cheetah_plus cpu types and don't taint
the kernel.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/sbus/char/bbc_i2c.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/sbus/char/bbc_i2c.c b/drivers/sbus/char/bbc_i2c.c index 1c8b612d8234..3e156e005f2e 100644 --- a/drivers/sbus/char/bbc_i2c.c +++ b/drivers/sbus/char/bbc_i2c.c | |||
@@ -440,7 +440,8 @@ static int __init bbc_i2c_init(void) | |||
440 | struct linux_ebus_device *edev = NULL; | 440 | struct linux_ebus_device *edev = NULL; |
441 | int err, index = 0; | 441 | int err, index = 0; |
442 | 442 | ||
443 | if (tlb_type != cheetah || !bbc_present()) | 443 | if ((tlb_type != cheetah && tlb_type != cheetah_plus) || |
444 | !bbc_present()) | ||
444 | return -ENODEV; | 445 | return -ENODEV; |
445 | 446 | ||
446 | for_each_ebus(ebus) { | 447 | for_each_ebus(ebus) { |
@@ -486,3 +487,4 @@ static void bbc_i2c_cleanup(void) | |||
486 | 487 | ||
487 | module_init(bbc_i2c_init); | 488 | module_init(bbc_i2c_init); |
488 | module_exit(bbc_i2c_cleanup); | 489 | module_exit(bbc_i2c_cleanup); |
490 | MODULE_LICENSE("GPL"); | ||