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, 3 Oct 2011 17:53:16 +0200
From:	Samuel Ortiz <sameo@...ux.intel.com>
To:	Linus Walleij <linus.walleij@...ricsson.com>
Cc:	linux-kernel@...r.kernel.org, Lee Jones <lee.jones@...aro.org>,
	Jonas Aberg <jonas.aberg@...ricsson.com>,
	Linus Walleij <linus.walleij@...aro.org>
Subject: Re: [PATCH 08/23] mfd/db8500-prcmu: add watchdog accessor functions

Hi Linus,

On Fri, Aug 12, 2011 at 10:28:33AM +0200, Linus Walleij wrote:
> +int prcmu_config_a9wdog(u8 num, bool sleep_auto_off)
> +{
> +	BUG_ON(num == 0 || num > 0xf);
> +	return prcmu_a9wdog(MB4H_A9WDOG_CONF, num, 0, 0,
> +			    sleep_auto_off ? A9WDOG_AUTO_OFF_EN :
> +			    A9WDOG_AUTO_OFF_DIS);
> +}
> +
> +int prcmu_enable_a9wdog(u8 id)
> +{
> +	return prcmu_a9wdog(MB4H_A9WDOG_EN, id, 0, 0, 0);
> +}
> +
> +int prcmu_disable_a9wdog(u8 id)
> +{
> +	return prcmu_a9wdog(MB4H_A9WDOG_DIS, id, 0, 0, 0);
> +}
> +
> +int prcmu_kick_a9wdog(u8 id)
> +{
> +	return prcmu_a9wdog(MB4H_A9WDOG_KICK, id, 0, 0, 0);
> +}
So I suppose you will eventually export those symbols ?

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

Powered by Openwall GNU/*/Linux Powered by OpenVZ