[PATCH v2 2/4] drivers: hwspinlock: add OMAP implementation
Ionut Nicu
ionut.nicu at mindbit.ro
Tue Nov 23 18:23:27 EST 2010
Hi Ohad,
On Tue, 2010-11-23 at 17:38 +0200, Ohad Ben-Cohen wrote:
> From: Simon Que <sque at ti.com>
>
> Add hwspinlock support for the OMAP4 Hardware Spinlock device.
>
<snip>
> +
> + io_base = ioremap(res->start, resource_size(res));
> + if (!io_base) {
> + ret = -ENOMEM;
> + goto free_state;
> + }
> +
> + /* Determine number of locks */
> + i = readl(io_base + SYSSTATUS_OFFSET);
> + i >>= SPINLOCK_NUMLOCKS_BIT_OFFSET;
> +
> + /* exactly one of the four least significant bits must be 1 */
> + if (!i || !is_power_of_2(i) || i > 8) {
> + ret = -EINVAL;
> + goto iounmap_base;
> + }
> +
At iounmap_base you unmap state->io_base, but that's set only after this
check. You should probably iounmap(io_base).
Regards,
Ionut.
More information about the linux-arm-kernel
mailing list