[PATCH] sound: Fix last two instances of "kcalloc(1,...)" -> "kzalloc()"

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



  Change the remaining two instances of "kcalloc(1,...)" to
"kzalloc()".

Signed-off-by:  Robert P. J. Day <[email protected]>

---

  Now that that general change has been merged into Linus' tree, I've
added a check for that to an ongoing "coding style" script of mine
that scans the tree on a regular basis to detect stuff that shouldn't
be there anymore.  Having subjected everyone to the unspeakable grief
of getting that patch in in the first place, I'm going to make sure
stuff like that never comes back.

  As Barney Fife would say, "Nip it!  Nip it in the bud!"



diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index fb96144..5ebdd8a 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -5936,7 +5936,7 @@ static int patch_alc262(struct hda_codec *codec)
 	int board_config;
 	int err;

-	spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
+	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
 	if (spec == NULL)
 		return -ENOMEM;

@@ -6795,7 +6795,7 @@ static int patch_alc861(struct hda_codec *codec)
 	int board_config;
 	int err;

-	spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
+	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
 	if (spec == NULL)
 		return -ENOMEM;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux