Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752816AbaF1Pyn (ORCPT ); Sat, 28 Jun 2014 11:54:43 -0400 Received: from smtp5-g21.free.fr ([212.27.42.5]:64488 "EHLO smtp5-g21.free.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751532AbaF1Pym (ORCPT ); Sat, 28 Jun 2014 11:54:42 -0400 X-Greylist: delayed 52019 seconds by postgrey-1.27 at vger.kernel.org; Sat, 28 Jun 2014 11:54:42 EDT From: Guillaume Morin To: gregkh@linuxfoundation.org, jic23@kernel.org Cc: Guillaume Morin , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, mwelling@ieee.org Subject: [PATCH v4 1/1] staging: iio: ad9850.c: code cleanup Date: Sat, 28 Jun 2014 17:54:39 +0200 Message-Id: <936f1ac494ee8708e37a8cb16a70aa3f007e93cd.1403966025.git.guillaume@morinfr.org> X-Mailer: git-send-email 1.7.10.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org checkpath.pl was complaining about value_mask: ERROR: Macros with complex values should be enclosed in parenthesis I fixed this by simply removing it since it's not used (as well as another macro). Got rid of the un-necessary error_ret label as well. Signed-off-by: Guillaume Morin Reported-by: Michael Welling --- Changes since v3: - Added Reported-by: Michael Welling drivers/staging/iio/frequency/ad9850.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/drivers/staging/iio/frequency/ad9850.c b/drivers/staging/iio/frequency/ad9850.c index af877ff..8727933 100644 --- a/drivers/staging/iio/frequency/ad9850.c +++ b/drivers/staging/iio/frequency/ad9850.c @@ -21,9 +21,6 @@ #define DRV_NAME "ad9850" -#define value_mask (u16)0xf000 -#define addr_shift 12 - /* Register format: 4 bits addr + 12 bits value */ struct ad9850_config { u8 control[5]; @@ -50,9 +47,6 @@ static ssize_t ad9850_set_parameter(struct device *dev, mutex_lock(&st->lock); ret = spi_sync_transfer(st->sdev, &xfer, 1); - if (ret) - goto error_ret; -error_ret: mutex_unlock(&st->lock); return ret ? ret : len; -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/