mirror of
https://github.com/ipxe/ipxe
synced 2026-04-16 03:00:10 +03:00
[i386] Change [u]int32_t to [unsigned] int, rather than [unsigned] long
This brings us in to line with Linux definitions, and also simplifies adding x86_64 support since both platforms have 2-byte shorts, 4-byte ints and 8-byte long longs.
This commit is contained in:
@@ -50,8 +50,8 @@ static int prism2_find_plx ( hfa384x_t *hw, struct pci_device *p )
|
||||
/* Fill out hw structure */
|
||||
hw->membase = attr_mem;
|
||||
hw->iobase = iobase;
|
||||
printf ( "PLX9052 has local config registers at %#lx\n", plx_lcr );
|
||||
printf ( "Prism2 has attribute memory at %#lx and I/O base at %#lx\n", attr_mem, iobase );
|
||||
printf ( "PLX9052 has local config registers at %#x\n", plx_lcr );
|
||||
printf ( "Prism2 has attribute memory at %#x and I/O base at %#x\n", attr_mem, iobase );
|
||||
|
||||
/* Search for CIS strings */
|
||||
printf ( "Searching for PCMCIA card...\n" );
|
||||
|
||||
Reference in New Issue
Block a user