[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20140102150042.GA30234@mwanda>
Date: Thu, 2 Jan 2014 18:00:42 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: Ivaylo Dimitrov <ivo.g.dimitrov.75@...il.com>
Cc: gregkh@...uxfoundation.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org,
Ivaylo Dimitrov <freemangordon@....bg>, pavel@....cz,
pali.rohar@...il.com
Subject: Re: [PATCH v2] Staging: tidspbridge: Use hashtable implementation
> + u32 val_size;
> + DECLARE_HASHTABLE(hash_table, GH_HASH_ORDER);
> + u32 (*hash)(void *);
> + bool (*match)(void *, void *);
> + void (*delete)(void *);
I forgot to say, put the parameter name in the declaration.
+ u32 (*hash)(void *key);
+ bool (*match)(void *key, void *result);
+ void (*delete)(void *key);
I have no idea if those names are correct.
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists