public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [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

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