lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 14 Mar 2011 11:11:18 +0100
From:	Samuel Ortiz <sameo@...ux.intel.com>
To:	MyungJoo Ham <myungjoo.ham@...sung.com>
Cc:	linux-kernel@...r.kernel.org, kyungmin.park@...sung.com,
	myungjoo.ham@...il.com
Subject: Re: [PATCH 1/2] MAX8997/8966 MFD: Add IRQ control feature

Hi MyungJoo,

On Fri, Mar 04, 2011 at 04:45:47PM +0900, MyungJoo Ham wrote:
> This patch enables IRQ handling for MAX8997/8966 chips.
> 
> Signed-off-by: MyungJoo Ham <myungjoo.ham@...sung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@...sung.com>
Joe's comments make sense. Also, here are my comments:

> +static irqreturn_t max8997_irq_thread(int irq, void *data)
> +{
> +	struct max8997_dev *max8997 = data;
> +	u8 irq_reg[MAX8997_IRQ_GROUP_NR];
> +	u8 irq_src;
> +	int ret;
> +	int i;
> +
> +	ret = max8997_read_reg(max8997->i2c, MAX8997_REG_INTSRC, &irq_src);
> +	if (ret < 0) {
> +		dev_err(max8997->dev, "Failed to read interrupt source: %d\n",
> +				ret);
> +		return IRQ_NONE;
> +	}
> +
> +	for (i = 0; i < MAX8997_IRQ_GROUP_NR; i++)
> +		irq_reg[i] = 0;
> +
> +	if (irq_src & (1 << 1)) {
All the (1 << n) parts could be nicely replaced with relevant #define. That
would make your code more readable.



> +		/* PMIC INT1 ~ INT4 */
> +		max8997_bulk_read(max8997->i2c, MAX8997_REG_INT1, 4,
> +				&irq_reg[PMIC_INT1]);
> +	}
> +	if (irq_src & (1 << 2)) {
> +		/* FUEL GAUGE Interrupt */
> +		/* Ignored */
> +		irq_reg[FUEL_GAUGE] = 0;
> +	}
> +	if (irq_src & (1 << 3)) {
> +		/* MUIC INT1 ~ INT3 */
> +		max8997_bulk_read(max8997->muic, MAX8997_MUIC_REG_INT1, 3,
> +				&irq_reg[MUIC_INT1]);
> +	}
> +	if (irq_src & (1 << 4)) {
> +		/* GPIO Interrupt */
> +		u8 gpio_info[12];
> +		int gpio;
> +
> +		irq_reg[GPIO_LOW] = 0;
> +		irq_reg[GPIO_HI] = 0;
> +
> +		max8997_bulk_read(max8997->i2c, MAX8997_REG_GPIOCNTL1, 12,
> +				gpio_info);
> +		for (gpio = 0; gpio < 8; gpio++) {
> +			u8 val = gpio_info[gpio] & 0x34;
> +			if (((val & 0x30) == 0x30) ||
> +					(val == 0x10) ||
> +					(val == 0x24))
There are a lot of magic constants here, and I'd love to see that replaced as
well with some more descriptive macros.

Cheers,
Samuel.

-- 
Intel Open Source Technology Centre
http://oss.intel.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists