First  |  Prev |  Next  |  Last
Pages: 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
kconfig: introduce alldefconfig + savedefconfig
> in kconfig is preferable. This patch set introduce "alldefconfig". alldefconfig create a configuration with all values set to default values. This can be usefull when we check if we do have a sane set of default values. Rhe config can be inspected using menuconfig. The patches also introd... 28 Jul 2010 03:08
rtc: Add MAX8998 rtc driver
On Tue, Jul 20, 2010 at 03:57:38PM +0900, Joonyoung Shim wrote: This adds support for the RTC provided by the Maxim 8998 chip. This driver was tested on a GONI board by using the rtc-test application from the Documentation/rtc.txt. Signed-off-by: Joonyoung Shim <jy0922.shim(a)samsung.com> Signed-off-by... 2 Aug 2010 22:26
mfd: MAX8998: Use struct i2c_client to argument on i2c operation functions
On Tue, Jul 20, 2010 at 03:57:36PM +0900, Joonyoung Shim wrote: The MAX8998 chip have regulator and rtc features. The i2c slave address of regulator and rtc is different, so needs each i2c client on i2c operation functions. Also, this patch exports i2c operation functions instead of callback to make ... 25 Jul 2010 18:22
[PATCH 4/4] kconfig: add savedefconfig
From 5edffcc6890a7dbd43b8da9c453bee794e81e7c7 Mon Sep 17 00:00:00 2001 From: Sam Ravnborg <sam(a)ravnborg.org> Date: Sun, 25 Jul 2010 23:18:47 +0200 Subject: [PATCH 4/4] kconfig: add savedefconfig MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit savedefconfig is used to s... 25 Jul 2010 18:22
[PATCH 3/4] kconfig: add alldefconfig
From e797380842b48477cc9d5e625420c3426caff6e2 Mon Sep 17 00:00:00 2001 From: Sam Ravnborg <sam(a)ravnborg.org> Date: Sat, 24 Jul 2010 23:51:23 +0200 Subject: [PATCH 3/4] kconfig: add alldefconfig alldefconfig create a configuration with all values set to their default value (form the Kconfig files). This may be... 25 Jul 2010 18:22
[PATCH 2/4] kconfig: print more info when we see a recursive dependency
From 874dbe17dd7b55238bdf995461488fc84196987c Mon Sep 17 00:00:00 2001 From: Roman Zippel <zippel(a)linux-m68k.org> Date: Wed, 31 Dec 2008 03:55:00 +0100 Subject: [PATCH 2/4] kconfig: print more info when we see a recursive dependency Consider following kconfig file: config TEST1 bool "test 1" depends on TES... 25 Jul 2010 18:22
[RFC] kconfig: introduce alldefconfig + savedefconfig
After reading some of the mails about the defconfig files I decided to take a look at kconfig. We already decided to go for a solution where the defconfig files contains only the minimal configuration. Uwe developed a script to assist but having native support in kconfig is preferable. This patch set introduc... 25 Jul 2010 18:22
[PATCH 1/4] kconfig: save location of config symbols
From f427c3886d7916ad8c6575964a753a33507d9f2e Mon Sep 17 00:00:00 2001 From: Sam Ravnborg <sam(a)ravnborg.org> Date: Sat, 24 Jul 2010 20:17:33 +0200 Subject: [PATCH 1/4] kconfig: save location of config symbols When we add a new config symbol save the file/line so we later can refer to their location. The infor... 25 Jul 2010 18:22
[PATCH] save and restore etm state across core OFF modes
This prevents ETM stalls whenever core enters OFF mode. Original patch author is Richard Woodruff <r-woodruff2(a)ti.com>. This version of the patch makes use of the ETM OS save/restore mechanism, which takes about 55 words in omap3_arm_context[] instead of 128. Also, saving ETM context can be switched on/off at run... 25 Jul 2010 18:22
why are there some redundant variable definition
Hi, I have read a macro like this ++++ include/linux/kernel.h 159: #define min_t(type,x,y) \ 160: ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; }) ++++ net/ipv4/tcp_output.c 654: int full_space = min_t(int, tp->window_clamp, tcp_full_space(sk)); The definitions of __x and __y are somewhat redundan... 25 Jul 2010 18:22
First  |  Prev |  Next  |  Last
Pages: 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413