diff options
author | Laxman Dewangan <ldewangan@nvidia.com> | 2012-04-24 11:41:38 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-24 11:02:14 -0700 |
commit | 610202ddc6951453034475fdcf5c9caf14f050de (patch) | |
tree | 7baff001c73a145a2b007281c678a9b6c7577958 | |
parent | 78aee0fc9a2ee913ef8c524c380a72ee693dd6cb (diff) | |
download | linux-3.10-610202ddc6951453034475fdcf5c9caf14f050de.tar.gz linux-3.10-610202ddc6951453034475fdcf5c9caf14f050de.tar.bz2 linux-3.10-610202ddc6951453034475fdcf5c9caf14f050de.zip |
staging: iio: light: of: Fix vendor prefix of isl29018/isl29028
ISL29018/ISL29028 is from Intersil Corporation and making the
vendor prefix for this part as "isil" for OF compatibity.
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/iio/light/isl29018.c | 2 | ||||
-rw-r--r-- | drivers/staging/iio/light/isl29028.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/iio/light/isl29018.c b/drivers/staging/iio/light/isl29018.c index 073e899e175..1ec2dacb2ee 100644 --- a/drivers/staging/iio/light/isl29018.c +++ b/drivers/staging/iio/light/isl29018.c @@ -596,7 +596,7 @@ static const struct i2c_device_id isl29018_id[] = { MODULE_DEVICE_TABLE(i2c, isl29018_id); static const struct of_device_id isl29018_of_match[] = { - { .compatible = "invn,isl29018", }, + { .compatible = "isil,isl29018", }, { }, }; MODULE_DEVICE_TABLE(of, isl29018_of_match); diff --git a/drivers/staging/iio/light/isl29028.c b/drivers/staging/iio/light/isl29028.c index 4ac49aa344b..7057d9b5662 100644 --- a/drivers/staging/iio/light/isl29028.c +++ b/drivers/staging/iio/light/isl29028.c @@ -542,7 +542,7 @@ static const struct i2c_device_id isl29028_id[] = { MODULE_DEVICE_TABLE(i2c, isl29028_id); static const struct of_device_id isl29028_of_match[] = { - { .compatible = "isl,isl29028", }, + { .compatible = "isil,isl29028", }, { }, }; MODULE_DEVICE_TABLE(of, isl29028_of_match); |