We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed58ae8 commit 156872fCopy full SHA for 156872f
drivers/zorro/zorro.c
@@ -18,6 +18,7 @@
18
#include <linux/platform_device.h>
19
#include <linux/dma-mapping.h>
20
#include <linux/slab.h>
21
+#include <linux/string_choices.h>
22
23
#include <asm/byteorder.h>
24
#include <asm/setup.h>
@@ -152,7 +153,7 @@ static int __init amiga_zorro_probe(struct platform_device *pdev)
152
153
platform_set_drvdata(pdev, bus);
154
155
pr_info("Zorro: Probing AutoConfig expansion devices: %u device%s\n",
- zorro_num_autocon, zorro_num_autocon == 1 ? "" : "s");
156
+ zorro_num_autocon, str_plural(zorro_num_autocon));
157
158
/* First identify all devices ... */
159
for (i = 0; i < zorro_num_autocon; i++) {
0 commit comments