Skip to content

Commit

Permalink
platform/chrome: coding style fixes
Browse files Browse the repository at this point in the history
added blank lines after declarations in some places

Signed-off-by: Robin Schroer <sulamiification@gmail.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
  • Loading branch information
Robin Schroer authored and Olof Johansson committed Jul 10, 2014
1 parent 963cb6f commit 49c68a2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/platform/chrome/chromeos_laptop.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 49c68a2

Please sign in to comment.