diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-05-15 11:08:10 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-18 16:59:06 +0200 |
commit | ff35eb23de9be50fbe3405f35244b5e82eadc5fa (patch) | |
tree | 4224f2af13bfeaa2a420f16394f18fad70b810aa /drivers/ipack | |
parent | df2aa81a44a904c34473f0974d67c5b257163e86 (diff) | |
download | linux-ff35eb23de9be50fbe3405f35244b5e82eadc5fa.tar.gz linux-ff35eb23de9be50fbe3405f35244b5e82eadc5fa.tar.bz2 linux-ff35eb23de9be50fbe3405f35244b5e82eadc5fa.zip |
ipack: Improve a size determination in ipack_bus_register()
Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Acked-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/ipack')
-rw-r--r-- | drivers/ipack/ipack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ipack/ipack.c b/drivers/ipack/ipack.c index 575c4f29e0f7..a1e07a77d4e6 100644 --- a/drivers/ipack/ipack.c +++ b/drivers/ipack/ipack.c @@ -212,7 +212,7 @@ struct ipack_bus_device *ipack_bus_register(struct device *parent, int slots, int bus_nr; struct ipack_bus_device *bus; - bus = kzalloc(sizeof(struct ipack_bus_device), GFP_KERNEL); + bus = kzalloc(sizeof(*bus), GFP_KERNEL); if (!bus) return NULL; |