Re: [PATCH] Fix compilation error with older versions of gcc

2012-11-19 Thread Thomas Schwinge
Hi! Welcome Matthew to GNU Hurd development! :-) On Mon, 19 Nov 2012 15:02:52 +, Matthew Leach wrote: > Some versions of gcc will error if you define a type twice (even if > the definition is the same). The ncr53c8xx scsi driver defines > 'vm_offset_t', this is also defined in mach_types.h

[PATCH] Fix compilation error with older versions of gcc

2012-11-19 Thread Matthew Leach
Some versions of gcc will error if you define a type twice (even if the definition is the same). The ncr53c8xx scsi driver defines 'vm_offset_t', this is also defined in mach_types.h and will therefore cause a compilation error depending on the gcc version. * linux/src/drivers/scsi/ncr53c8xx.c: ex