* [PATCH] ARM: OMAP: Convert SLAB_KERNEL to GFP_KERNEL in omap_uwire.c
@ 2006-12-22 10:11 Dirk Behme
2006-12-22 20:35 ` Tony Lindgren
0 siblings, 1 reply; 2+ messages in thread
From: Dirk Behme @ 2006-12-22 10:11 UTC (permalink / raw)
To: linux-omap-open-source
[-- Attachment #1: Type: text/plain, Size: 115 bytes --]
ARM: OMAP: Convert SLAB_KERNEL to GFP_KERNEL in omap_uwire.c
Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>
[-- Attachment #2: omap_uwire_fixes.txt --]
[-- Type: text/plain, Size: 491 bytes --]
Index: linux-osk/drivers/spi/omap_uwire.c
===================================================================
--- linux-osk.orig/drivers/spi/omap_uwire.c
+++ linux-osk/drivers/spi/omap_uwire.c
@@ -446,7 +446,7 @@ static int uwire_setup(struct spi_device
struct uwire_state *ust = spi->controller_state;
if (ust == NULL) {
- ust = kzalloc(sizeof(*ust), SLAB_KERNEL);
+ ust = kzalloc(sizeof(*ust), GFP_KERNEL);
if (ust == NULL)
return -ENOMEM;
spi->controller_state = ust;
[-- Attachment #3: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ARM: OMAP: Convert SLAB_KERNEL to GFP_KERNEL in omap_uwire.c
2006-12-22 10:11 [PATCH] ARM: OMAP: Convert SLAB_KERNEL to GFP_KERNEL in omap_uwire.c Dirk Behme
@ 2006-12-22 20:35 ` Tony Lindgren
0 siblings, 0 replies; 2+ messages in thread
From: Tony Lindgren @ 2006-12-22 20:35 UTC (permalink / raw)
To: Dirk Behme; +Cc: linux-omap-open-source
* Dirk Behme <dirk.behme@googlemail.com> [061222 02:11]:
>
> ARM: OMAP: Convert SLAB_KERNEL to GFP_KERNEL in omap_uwire.c
>
> Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>
> Index: linux-osk/drivers/spi/omap_uwire.c
> ===================================================================
> --- linux-osk.orig/drivers/spi/omap_uwire.c
> +++ linux-osk/drivers/spi/omap_uwire.c
> @@ -446,7 +446,7 @@ static int uwire_setup(struct spi_device
> struct uwire_state *ust = spi->controller_state;
>
> if (ust == NULL) {
> - ust = kzalloc(sizeof(*ust), SLAB_KERNEL);
> + ust = kzalloc(sizeof(*ust), GFP_KERNEL);
> if (ust == NULL)
> return -ENOMEM;
> spi->controller_state = ust;
Pushing today.
Tony
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-12-22 20:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-22 10:11 [PATCH] ARM: OMAP: Convert SLAB_KERNEL to GFP_KERNEL in omap_uwire.c Dirk Behme
2006-12-22 20:35 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox