mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
x86: Use 'unsigned int' in install_e820_map() functions
This fixes the following checkpatch warning: warning: Prefer 'unsigned int' to bare use of 'unsigned' Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
This commit is contained in:
parent
fa5e91f778
commit
87af71c2ea
6 changed files with 17 additions and 11 deletions
|
@ -12,12 +12,13 @@
|
|||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
unsigned install_e820_map(unsigned max_entries, struct e820entry *entries)
|
||||
unsigned int install_e820_map(unsigned int max_entries,
|
||||
struct e820entry *entries)
|
||||
{
|
||||
unsigned num_entries;
|
||||
unsigned int num_entries;
|
||||
int i;
|
||||
|
||||
num_entries = min((unsigned)lib_sysinfo.n_memranges, max_entries);
|
||||
num_entries = min((unsigned int)lib_sysinfo.n_memranges, max_entries);
|
||||
if (num_entries < lib_sysinfo.n_memranges) {
|
||||
printf("Warning: Limiting e820 map to %d entries.\n",
|
||||
num_entries);
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
unsigned install_e820_map(unsigned max_entries, struct e820entry *entries)
|
||||
unsigned int install_e820_map(unsigned int max_entries,
|
||||
struct e820entry *entries)
|
||||
{
|
||||
entries[0].addr = 0;
|
||||
entries[0].size = ISA_START_ADDRESS;
|
||||
|
|
|
@ -99,7 +99,8 @@ static struct sfi_table_simple *sfi_search_mmap(void)
|
|||
i < SFI_GET_NUM_ENTRIES(sb, struct sfi_mem_entry); \
|
||||
i++, mentry++) \
|
||||
|
||||
static unsigned sfi_setup_e820(unsigned max_entries, struct e820entry *entries)
|
||||
static unsigned int sfi_setup_e820(unsigned int max_entries,
|
||||
struct e820entry *entries)
|
||||
{
|
||||
struct sfi_table_simple *sb;
|
||||
struct sfi_mem_entry *mentry;
|
||||
|
@ -188,7 +189,8 @@ static phys_size_t sfi_get_ram_size(void)
|
|||
return ram;
|
||||
}
|
||||
|
||||
unsigned install_e820_map(unsigned max_entries, struct e820entry *entries)
|
||||
unsigned int install_e820_map(unsigned int max_entries,
|
||||
struct e820entry *entries)
|
||||
{
|
||||
return sfi_setup_e820(max_entries, entries);
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@ struct e820entry {
|
|||
#endif /* __ASSEMBLY__ */
|
||||
|
||||
/* Implementation defined function to install an e820 map */
|
||||
unsigned install_e820_map(unsigned max_entries, struct e820entry *);
|
||||
unsigned int install_e820_map(unsigned int max_entries,
|
||||
struct e820entry *);
|
||||
|
||||
#endif /* _ASM_X86_E820_H */
|
||||
|
|
|
@ -17,7 +17,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
|||
* 0x100000-gd->ram_size Useable RAM
|
||||
* CONFIG_PCIE_ECAM_BASE PCIe ECAM
|
||||
*/
|
||||
__weak unsigned install_e820_map(unsigned max_entries,
|
||||
__weak unsigned int install_e820_map(unsigned int max_entries,
|
||||
struct e820entry *entries)
|
||||
{
|
||||
entries[0].addr = 0;
|
||||
|
|
|
@ -62,9 +62,10 @@ ulong board_get_usable_ram_top(ulong total_size)
|
|||
return fsp_get_usable_lowmem_top(gd->arch.hob_list);
|
||||
}
|
||||
|
||||
unsigned install_e820_map(unsigned max_entries, struct e820entry *entries)
|
||||
unsigned int install_e820_map(unsigned int max_entries,
|
||||
struct e820entry *entries)
|
||||
{
|
||||
unsigned num_entries = 0;
|
||||
unsigned int num_entries = 0;
|
||||
const struct hob_header *hdr;
|
||||
struct hob_res_desc *res_desc;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue