<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/android/alarm-dev.c, branch v3.4.30</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/drivers/staging/android/alarm-dev.c?h=v3.4.30</id>
<link rel='self' href='https://git.amat.us/linux/atom/drivers/staging/android/alarm-dev.c?h=v3.4.30'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2012-02-10T18:06:19Z</updated>
<entry>
<title>staging: android-alarm: HACK: wakelock workaround</title>
<updated>2012-02-10T18:06:19Z</updated>
<author>
<name>John Stultz</name>
<email>john.stultz@linaro.org</email>
</author>
<published>2012-02-09T22:24:35Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=79ef07162fb088f8afe7709881e2b5e2a4098202'/>
<id>urn:sha1:79ef07162fb088f8afe7709881e2b5e2a4098202</id>
<content type='text'>
Allow Android alarmtimer device to build while wakelocks are still
out of tree.

CC: Arve Hjønnevåg &lt;arve@android.com&gt;
CC: Android Kernel Team &lt;kernel-team@android.com&gt;
Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: android-alarm: Fix namespace collision with upstreamed alarmtimers</title>
<updated>2012-02-10T18:06:19Z</updated>
<author>
<name>John Stultz</name>
<email>john.stultz@linaro.org</email>
</author>
<published>2012-02-09T22:24:34Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=f2f28eacf240baffbba5e9744278f85fc62ddd60'/>
<id>urn:sha1:f2f28eacf240baffbba5e9744278f85fc62ddd60</id>
<content type='text'>
The upstreamed alarmtimers are similar but not quite 100% API
compatibile with the android in-kernel alarm api. To aid the
transition, prefix the the android in-kernel api with android_

CC: Arve Hjønnevåg &lt;arve@android.com&gt;
CC: Android Kernel Team &lt;kernel-team@android.com&gt;
Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: android-alarm: Fix include compile issues</title>
<updated>2012-02-10T18:06:19Z</updated>
<author>
<name>John Stultz</name>
<email>john.stultz@linaro.org</email>
</author>
<published>2012-02-09T22:24:33Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=d47908b20c4cc22c2700ca737252bdc555d4f28a'/>
<id>urn:sha1:d47908b20c4cc22c2700ca737252bdc555d4f28a</id>
<content type='text'>
The file asm/mach/time.h doesn't exist on all arches,
so include &lt;linux/time.h&gt;. Also linux/sysdev.h is gone
so kill it.

CC: Arve Hjønnevåg &lt;arve@android.com&gt;
CC: Android Kernel Team &lt;kernel-team@android.com&gt;
Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: android-alarm: Add needed module.h includes</title>
<updated>2012-02-10T18:06:18Z</updated>
<author>
<name>Andy Green</name>
<email>andy.green@linaro.org</email>
</author>
<published>2012-02-09T22:24:32Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=bf647ea717e529fc4f3dfa17dffd40da10522b00'/>
<id>urn:sha1:bf647ea717e529fc4f3dfa17dffd40da10522b00</id>
<content type='text'>
Add module.h includes required to build

CC: Arve Hjønnevåg &lt;arve@android.com&gt;
CC: Android Kernel Team &lt;kernel-team@android.com&gt;
CC: Andy Green &lt;andy.green@linaro.org&gt;
Signed-off-by: Andy Green &lt;andy.green@linaro.org&gt;
[jstultz: Tweaked commit subject, folded two patches
into one]
Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: android-alarm: Add android alarm driver &amp; in-kernel alarm interface</title>
<updated>2012-02-10T18:05:42Z</updated>
<author>
<name>Arve Hjønnevåg</name>
<email>arve@android.com</email>
</author>
<published>2012-02-09T22:24:30Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=841cb11c6fc7ae559ef2d856932907056b75617d'/>
<id>urn:sha1:841cb11c6fc7ae559ef2d856932907056b75617d</id>
<content type='text'>
Drivers can now create alarms that will use an hrtimer while the
system is running and the rtc to wake up from suspend.

CC: Arve Hjønnevåg &lt;arve@android.com&gt;
CC: Android Kernel Team &lt;kernel-team@android.com&gt;
Signed-off-by: Arve Hjønnevåg &lt;arve@android.com&gt;
[Fold and move alarm driver and interface to staging,
 fix whitespace issue, drop kconfig &amp; make file changes
 as it currently doesn't build  -jstultz]
Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
