diff options
author | Panagiotis Issaris <takis@issaris.org> | 2005-11-09 02:08:42 +0100 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-11-10 11:28:20 -0800 |
commit | baf47fb66020e5c3fe2386680fa2d79d1f8e0052 (patch) | |
tree | c7d287445373cbdecf22609aa97bd153a6633b36 /arch/ia64/sn/kernel | |
parent | 16e85d1a3182009ff81d71aaf65a2808bd395a6b (diff) | |
download | blackbird-op-linux-baf47fb66020e5c3fe2386680fa2d79d1f8e0052.tar.gz blackbird-op-linux-baf47fb66020e5c3fe2386680fa2d79d1f8e0052.zip |
[IA64] Replace kcalloc(1, with kzalloc.
Conversion from kcalloc(1, to kzalloc.
Signed-off-by: Panagiotis Issaris <takis@issaris.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/sn/kernel')
-rw-r--r-- | arch/ia64/sn/kernel/io_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/sn/kernel/io_init.c b/arch/ia64/sn/kernel/io_init.c index b4f5053f5e1b..05e4ea889981 100644 --- a/arch/ia64/sn/kernel/io_init.c +++ b/arch/ia64/sn/kernel/io_init.c @@ -349,7 +349,7 @@ void sn_pci_controller_fixup(int segment, int busnum, struct pci_bus *bus) return; /*bus # does not exist */ prom_bussoft_ptr = __va(prom_bussoft_ptr); - controller = kcalloc(1,sizeof(struct pci_controller), GFP_KERNEL); + controller = kzalloc(sizeof(struct pci_controller), GFP_KERNEL); controller->segment = segment; if (!controller) BUG(); |