Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a3c94e5c5921b0fd75b33042ca598aee52f1f7b9
Commit:     a3c94e5c5921b0fd75b33042ca598aee52f1f7b9
Parent:     b2b7910d5d3cb6e53b40a435bbc3f1de60f4464a
Author:     Al Viro <[EMAIL PROTECTED]>
AuthorDate: Fri Feb 9 16:05:07 2007 +0000
Committer:  Len Brown <[EMAIL PROTECTED]>
CommitDate: Fri Feb 9 13:04:58 2007 -0500

    ACPI: bay: fix wrong order of kzalloc arguments
    
    Signed-off-by: Al Viro <[EMAIL PROTECTED]>
    Signed-off-by: Len Brown <[EMAIL PROTECTED]>
---
 drivers/acpi/bay.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/acpi/bay.c b/drivers/acpi/bay.c
index 9fdee61..73dc10d 100644
--- a/drivers/acpi/bay.c
+++ b/drivers/acpi/bay.c
@@ -276,7 +276,7 @@ static int bay_add(acpi_handle handle, int id)
        /*
         * Initialize bay device structure
         */
-       new_bay = kzalloc(GFP_ATOMIC, sizeof(*new_bay));
+       new_bay = kzalloc(sizeof(*new_bay), GFP_ATOMIC);
        INIT_LIST_HEAD(&new_bay->list);
        new_bay->handle = handle;
        new_bay->name = (char *)nbuffer.pointer;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to