Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 178115
b: refs/heads/master
c: ef86f58
h: refs/heads/master
i:
  178113: 81258ee
  178111: 18fece4
v: v3
  • Loading branch information
Julia Lawall authored and Takashi Iwai committed Dec 19, 2009
1 parent dd47c62 commit 1e41123
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d6a89fefa50feda5516cd5210ad0008a44632b52
refs/heads/master: ef86f581f7e8b29cb58d7f4e892e1a91b3805124
2 changes: 1 addition & 1 deletion trunk/sound/isa/msnd/msnd_midi.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ int snd_msndmidi_new(struct snd_card *card, int device)
err = snd_rawmidi_new(card, "MSND-MIDI", device, 1, 1, &rmidi);
if (err < 0)
return err;
mpu = kcalloc(1, sizeof(*mpu), GFP_KERNEL);
mpu = kzalloc(sizeof(*mpu), GFP_KERNEL);
if (mpu == NULL) {
snd_device_free(card, rmidi);
return -ENOMEM;
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/pci/hda/patch_realtek.c
Original file line number Diff line number Diff line change
Expand Up @@ -12857,7 +12857,7 @@ static int patch_alc268(struct hda_codec *codec)
int board_config;
int i, has_beep, err;

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

Expand Down

0 comments on commit 1e41123

Please sign in to comment.