diff options
author | Robin Schroer <sulamiification@gmail.com> | 2014-05-29 20:45:07 +0200 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2014-07-10 09:40:36 -0700 |
commit | 49c68a21d4f308d67b8a4ff8bcf5cd3af53f027d (patch) | |
tree | 71dcd66ffe6f0cdc1170af181bfce23bfe9a8c73 /drivers/platform | |
parent | 963cb6fa0f5f115986e970b9d97440e4906524fa (diff) |
platform/chrome: coding style fixes
added blank lines after declarations in some places
Signed-off-by: Robin Schroer <sulamiification@gmail.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/chrome/chromeos_laptop.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/platform/chrome/chromeos_laptop.c b/drivers/platform/chrome/chromeos_laptop.c index 37fa570a7636..a53fe76de5d1 100644 --- a/drivers/platform/chrome/chromeos_laptop.c +++ b/drivers/platform/chrome/chromeos_laptop.c @@ -187,6 +187,7 @@ static int __find_i2c_adap(struct device *dev, void *data) struct i2c_lookup *lookup = data; static const char *prefix = "i2c-"; struct i2c_adapter *adapter; + if (strncmp(dev_name(dev), prefix, strlen(prefix)) != 0) return 0; adapter = to_i2c_adapter(dev); @@ -248,6 +249,7 @@ static struct i2c_client *add_i2c_device(const char *name, struct i2c_board_info *info) { const unsigned short addr_list[] = { info->addr, I2C_CLIENT_END }; + return __add_probed_i2c_device(name, find_i2c_adapter_num(type), info, @@ -542,6 +544,7 @@ static struct platform_driver cros_platform_driver = { static int __init chromeos_laptop_init(void) { int ret; + if (!dmi_check_system(chromeos_laptop_dmi_table)) { pr_debug("%s unsupported system.\n", __func__); return -ENODEV; |