Skip to content

Commit ac1440d

Browse files
DishankJogigeertu
authored andcommitted
zorro: Remove extra whitespace in macro definitions
Clean up the formatting of the MANUF() and PRODUCT() macro definitions in 'drivers/zorro/names.c' by removing unneeded spaces. No functional changes. Signed-off-by: Dishank Jogi <jogidishank503@gmail.com> Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org> Link: https://patch.msgid.link/20250728071452.35171-1-jogidishank503@gmail.com Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
1 parent f83ec76 commit ac1440d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

drivers/zorro/names.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ struct zorro_manuf_info {
3636
* real memory.. Parse the same file multiple times
3737
* to get all the info.
3838
*/
39-
#define MANUF( manuf, name ) static char __manufstr_##manuf[] __initdata = name;
39+
#define MANUF(manuf, name) static char __manufstr_##manuf[] __initdata = name;
4040
#define ENDMANUF()
41-
#define PRODUCT( manuf, prod, name ) static char __prodstr_##manuf##prod[] __initdata = name;
41+
#define PRODUCT(manuf, prod, name) static char __prodstr_##manuf##prod[] __initdata = name;
4242
#include "devlist.h"
4343

4444

45-
#define MANUF( manuf, name ) static struct zorro_prod_info __prods_##manuf[] __initdata = {
45+
#define MANUF(manuf, name) static struct zorro_prod_info __prods_##manuf[] __initdata = {
4646
#define ENDMANUF() };
47-
#define PRODUCT( manuf, prod, name ) { 0x##prod, 0, __prodstr_##manuf##prod },
47+
#define PRODUCT(manuf, prod, name) { 0x##prod, 0, __prodstr_##manuf##prod },
4848
#include "devlist.h"
4949

5050
static struct zorro_manuf_info __initdata zorro_manuf_list[] = {
51-
#define MANUF( manuf, name ) { 0x##manuf, ARRAY_SIZE(__prods_##manuf), __manufstr_##manuf, __prods_##manuf },
51+
#define MANUF(manuf, name) { 0x##manuf, ARRAY_SIZE(__prods_##manuf), __manufstr_##manuf, __prods_##manuf },
5252
#define ENDMANUF()
53-
#define PRODUCT( manuf, prod, name )
53+
#define PRODUCT(manuf, prod, name)
5454
#include "devlist.h"
5555
};
5656

0 commit comments

Comments
 (0)