From bfc20297e40a75d164d1cb22a971aecee537e200 Mon Sep 17 00:00:00 2001 From: Tzafrir Cohen Date: Sun, 30 Jan 2011 18:14:49 +0000 Subject: xpp: Use our KZALLOC/KZFREE Signed-off-by: Oron Peled Acked-by: Tzafrir Cohen git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9712 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- drivers/dahdi/xpp/xpp_dahdi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/dahdi/xpp/xpp_dahdi.c') diff --git a/drivers/dahdi/xpp/xpp_dahdi.c b/drivers/dahdi/xpp/xpp_dahdi.c index ba36c80..397ab91 100644 --- a/drivers/dahdi/xpp/xpp_dahdi.c +++ b/drivers/dahdi/xpp/xpp_dahdi.c @@ -510,7 +510,7 @@ static void phonedev_cleanup(xpd_t *xpd) for (x = 0; x < phonedev->channels; x++) { if (phonedev->chans[x]) { - kfree(phonedev->chans[x]); + KZFREE(phonedev->chans[x]); } } } @@ -531,7 +531,7 @@ __must_check static int phonedev_init(xpd_t *xpd, const xproto_table_t *proto_ta atomic_set(&phonedev->dahdi_registered, 0); atomic_set(&phonedev->open_counter, 0); for (x = 0; x < phonedev->channels; x++) { - if (!(phonedev->chans[x] = kmalloc(sizeof(*(phonedev->chans[x])), GFP_KERNEL))) { + if (!(phonedev->chans[x] = KZALLOC(sizeof(*(phonedev->chans[x])), GFP_KERNEL))) { ERR("%s: Unable to allocate channel %d\n", __FUNCTION__, x); goto err; } -- cgit v1.2.3