diff options
author | Burman Yan <yan_952@hotmail.com> | 2006-12-19 15:56:11 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-12-20 16:54:54 -0500 |
commit | 36bcbec7ce21e2e8b3143b11a05747330abeca70 (patch) | |
tree | d9ace4d83a5013dbb3cd599e7bc4358ce4cdb980 /drivers/acpi/sbs.c | |
parent | 5b7b4119553dd7cc0bc200c0d1b1598e158eec9a (diff) |
ACPI: replace kmalloc+memset with kzalloc
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/sbs.c')
-rw-r--r-- | drivers/acpi/sbs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/acpi/sbs.c b/drivers/acpi/sbs.c index 2fb7533314cd..f58fc7447ab4 100644 --- a/drivers/acpi/sbs.c +++ b/drivers/acpi/sbs.c | |||
@@ -1576,12 +1576,11 @@ static int acpi_sbs_add(struct acpi_device *device) | |||
1576 | int id, cnt; | 1576 | int id, cnt; |
1577 | acpi_status status = AE_OK; | 1577 | acpi_status status = AE_OK; |
1578 | 1578 | ||
1579 | sbs = kmalloc(sizeof(struct acpi_sbs), GFP_KERNEL); | 1579 | sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL); |
1580 | if (!sbs) { | 1580 | if (!sbs) { |
1581 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "kmalloc() failed\n")); | 1581 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "kmalloc() failed\n")); |
1582 | return -ENOMEM; | 1582 | return -ENOMEM; |
1583 | } | 1583 | } |
1584 | memset(sbs, 0, sizeof(struct acpi_sbs)); | ||
1585 | 1584 | ||
1586 | cnt = 0; | 1585 | cnt = 0; |
1587 | while (cnt < 10) { | 1586 | while (cnt < 10) { |