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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 25 Jul 2014 21:53:23 +0200
From:	Andreas Mohr <andi@...as.de>
To:	Wang YanQing <udknight@...il.com>, gregkh@...uxfoundation.org,
	linus.walleij@...aro.org, jhovold@...il.com, andi@...as.de,
	dforsi@...il.com, gnomes@...rguk.ukuu.org.uk,
	linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v5] usb:serial:pl2303: add GPIOs interface on PL2303

Hi,

On Sat, Jul 26, 2014 at 01:35:23AM +0800, Wang YanQing wrote:

> +         It support 2 GPIOs on PL2303HX currently,
"supports"

> +static u8 gpio_dir_mask[GPIO_NUM] = {0x10, 0x20};
> +static u8 gpio_value_mask[GPIO_NUM] = {0x40, 0x80};

Those two should better be static const, too (sorry).
You're at v5 already (wow, what endurance!),
but if there ever will be a v6... :)

> +static int pl2303_gpio_startup(struct usb_serial *serial)
> +{
> +	struct pl2303_serial_private *spriv = usb_get_serial_data(serial);
> +	char *label;
> +	int ret;
> +	int minor;
> +
> +	if (spriv->type != &pl2303_type_data[TYPE_HX])
> +		return 0;

Hmm, that's some structurally inverted check code.
The pl2303_gpio_startup() function in its entirety
is specific to the GPIO-supporting type TYPE_HX,
thus we shouldn't even *call* a type-specific sub handler
if we know that we're a different chip type.
And in fact pl2303_startup() already has everything in place
for a direct type check.
Yeah, that might be "less reliable" than a type check planted within
pl2303_gpio_startup() (someone might bogusly call pl2303_gpio_startup()
for a different-type chip),
but such an unrelated (external!) type check dependency
shouldn't be interwoven with a type-specific setup helper
which is to be concerned with inner-layer setup handling only.

A probably(!) even better idea here might be
to add some function pointers to spriv->type struct def,
to be able to do != NULL ptr checks and in such cases
call such chip-specific setup functions (i.e., call the HX type helper
which internally knows that it needs to do GPIO setup).
Such a change might be able to get rid of several #ifdef:s, too...
(plus, provide long-lasting generic infrastructure for future chip types).

Andreas Mohr
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ