[OpenBIOS] [PATCH] re-indent cuda_init()

Laurent Vivier laurent at lvivier.info
Sat Dec 20 21:07:30 CET 2008


This patch re-indents function cuda_init()

Signed-off-by: Laurent Vivier <Laurent at lvivier.info>

-------------- next part --------------
A non-text attachment was scrubbed...
Name: cuda-reindent.patch
Type: application/octet-stream
Size: 1754 bytes
Desc: not available
URL: <http://lists.openbios.org/pipermail/openbios/attachments/20081220/2e044a42/attachment.dmg>
-------------- next part --------------


---
  drivers/cuda.c |   42 +++++++++++++++++++++++-------------------
  1 file changed, 23 insertions(+), 19 deletions(-)

Index: openbios-devel/drivers/cuda.c
===================================================================
--- openbios-devel.orig/drivers/cuda.c	2008-12-20 20:47:20.000000000  
+0100
+++ openbios-devel/drivers/cuda.c	2008-12-20 20:47:34.000000000 +0100
@@ -240,32 +240,36 @@

  cuda_t *cuda_init (const char *path, uint32_t base)
  {
-    cuda_t *cuda;
-    char buf[64];
+	cuda_t *cuda;
+	char buf[64];
+	phandle_t aliases;
+
+	base += IO_CUDA_OFFSET;
+	CUDA_DPRINTF(" base=%08x\n", base);
+	cuda = malloc(sizeof(cuda_t));
+	if (cuda == NULL)
+	    return NULL;

-    base += IO_CUDA_OFFSET;
-    CUDA_DPRINTF(" base=%08x\n", base);
-    cuda = malloc(sizeof(cuda_t));
-    if (cuda == NULL)
-        return NULL;
+	snprintf(buf, sizeof(buf), "%s/via-cuda", path);
+	REGISTER_NAMED_NODE(ob_cuda, buf);

-    snprintf(buf, sizeof(buf), "%s/via-cuda", path);
-    REGISTER_NAMED_NODE(ob_cuda, buf);
+	aliases = find_dev("/aliases");
+	set_property(aliases, "via-cuda", buf, strlen(buf) + 1);

-    cuda->base = base;
-    cuda_writeb(cuda, B, cuda_readb(cuda, B) | TREQ | TIP);
+	cuda->base = base;
+	cuda_writeb(cuda, B, cuda_readb(cuda, B) | TREQ | TIP);
  #ifdef CONFIG_DRIVER_ADB
-    cuda->adb_bus = adb_bus_new(cuda, &cuda_adb_req);
-    if (cuda->adb_bus == NULL) {
-        free(cuda);
-        return NULL;
-    }
-    adb_bus_init(buf, cuda->adb_bus);
+	cuda->adb_bus = adb_bus_new(cuda, &cuda_adb_req);
+	if (cuda->adb_bus == NULL) {
+	    free(cuda);
+	    return NULL;
+	}
+	adb_bus_init(buf, cuda->adb_bus);
  #endif

-    rtc_init(buf);
+	rtc_init(buf);

-    return cuda;
+	return cuda;
  }

  #ifdef CONFIG_DRIVER_ADB






More information about the OpenBIOS mailing list