[coreboot] [PATCH] flashrom: Fix compilation of nic3com on 64bit

2009-05-14 Thread Carl-Daniel Hailfinger
Fix compilation of nic3com on 64bit. Signed-off-by: Carl-Daniel Hailfinger Index: flashrom-nic3com_compilefix/flash.h === --- flashrom-nic3com_compilefix/flash.h (Revision 511) +++ flashrom-nic3com_compilefix/flash.h (Arbeitskopie)

Re: [coreboot] [PATCH] flashrom: Fix compilation of nic3com on 64bit

2009-05-14 Thread ron minnich
I think one aspect of this is right, one is wrong -void get_io_perms(void) +void get_io_perms() The void should be left in here I think. { #if defined (__sun) && (defined(__i386) || defined(__amd64)) if (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) != 0) { @@ -102,7 +102,7 @@ { int ret

Re: [coreboot] [PATCH] flashrom: Fix compilation of nic3com on 64bit

2009-05-14 Thread Uwe Hermann
On Thu, May 14, 2009 at 11:28:32PM +0200, Carl-Daniel Hailfinger wrote: > Fix compilation of nic3com on 64bit. Thanks, I screwed up my last commit. > Signed-off-by: Carl-Daniel Hailfinger Acked-by: Uwe Hermann with the change below. > Index: flashrom-nic3com_compilefix/internal.c > ==

Re: [coreboot] [PATCH] flashrom: Fix compilation of nic3com on 64bit

2009-05-14 Thread Carl-Daniel Hailfinger
On 14.05.2009 23:36, Uwe Hermann wrote: > On Thu, May 14, 2009 at 11:28:32PM +0200, Carl-Daniel Hailfinger wrote: > >> Fix compilation of nic3com on 64bit. >> > > Thanks, I screwed up my last commit. > Mistakes happen. >> Signed-off-by: Carl-Daniel Hailfinger >> > > Acked-by: Uw