mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
iommu/amd: Fix compiler warning in copy_device_table()
This was reported by the kbuild bot. The condition in which entry would be used uninitialized can not happen, because when there is no iommu this function would never be called. But its no fast-path, so fix the warning anyway. Reported-by: kbuild test robot <fengguang.wu@intel.com> Acked-by: Baoquan He <bhe@redhat.com> Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
20b46dff13
commit
ae162efbf2
@ -854,7 +854,7 @@ static int get_dev_entry_bit(u16 devid, u8 bit)
|
||||
|
||||
static bool copy_device_table(void)
|
||||
{
|
||||
u64 int_ctl, int_tab_len, entry, last_entry = 0;
|
||||
u64 int_ctl, int_tab_len, entry = 0, last_entry = 0;
|
||||
struct dev_table_entry *old_devtb = NULL;
|
||||
u32 lo, hi, devid, old_devtb_size;
|
||||
phys_addr_t old_devtb_phys;
|
||||
|
Loading…
Reference in New Issue
Block a user