From 105b72ffb378635dd75cfed95d0ad4a515faa9b9 Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Mon, 8 Nov 2010 20:40:34 -0500 Subject: [PATCH] --- yaml --- r: 221852 b: refs/heads/master c: f0030d87be3cb2eb9eac633d09cb5d9f107ed0c6 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/hwmon/ad7414.c | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index f53bb43dcbef..00183e83c431 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f7334b4ca9108a86b64fbd0f435f44b2113ee053 +refs/heads/master: f0030d87be3cb2eb9eac633d09cb5d9f107ed0c6 diff --git a/trunk/drivers/hwmon/ad7414.c b/trunk/drivers/hwmon/ad7414.c index 1e4c21fc1a89..86d822aa9bbf 100644 --- a/trunk/drivers/hwmon/ad7414.c +++ b/trunk/drivers/hwmon/ad7414.c @@ -178,11 +178,13 @@ static int ad7414_probe(struct i2c_client *client, { struct ad7414_data *data; int conf; - int err = 0; + int err; if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA | - I2C_FUNC_SMBUS_READ_WORD_DATA)) + I2C_FUNC_SMBUS_READ_WORD_DATA)) { + err = -EOPNOTSUPP; goto exit; + } data = kzalloc(sizeof(struct ad7414_data), GFP_KERNEL); if (!data) {