All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix meta.c compile error
@ 2012-02-11  6:39 Jody Bruchon
  0 siblings, 0 replies; only message in thread
From: Jody Bruchon @ 2012-02-11  6:39 UTC (permalink / raw)
  To: linux-8086

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

commit a29edafa1d8aaded59d5dd1037f937dbfd79095d
Author: Jody Bruchon <jody@jodybruchon.com>
Date:   Sat Feb 11 01:31:13 2012 -0500

     In arch/i86/drivers/char/meta.c, a struct declaration issued a
     function call with a variable whose declaration was placed after
     the struct declaration, causing a compile error. I have moved the
     variable's declaration to be performed first, fixing the compile
     error.

     Signed-off-by: Jody Bruchon <jody@jodybruchon.com>
     Committed-by: Jody Bruchon <jody@jodybruchon.com>



[-- Attachment #2: 0001-fix_meta_compile_error.patch --]
[-- Type: text/plain, Size: 628 bytes --]

diff --git a/elks/arch/i86/drivers/char/meta.c b/elks/arch/i86/drivers/char/meta.c
index 2535aa9..5fed196 100644
--- a/elks/arch/i86/drivers/char/meta.c
+++ b/elks/arch/i86/drivers/char/meta.c
@@ -67,11 +67,11 @@ int post_request(struct ud_driver *driver, struct ud_request *request)
 
 static void do_meta_request(kdev_t device)
 {
+    int major = MAJOR(device);
     struct ud_driver *driver = get_driver(major);
     struct ud_request *udr;
     struct request *req;
     char *buff;
-    int major = MAJOR(device);
 
     printk("do_meta_request %d %x\n", major, blk_dev[major].current_request);
     if (NULL == driver) {

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-02-11  6:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-11  6:39 [PATCH] Fix meta.c compile error Jody Bruchon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.