On Tue, 3 Aug 2010 15:18:43 -0400 Bill Pemberton <wfp5p@xxxxxxxxxxxx> wrote: > quiet the warning about use of uninitialized e_src in > aer_isr() e_src is initialized by get_e_source() > > Signed-off-by: Bill Pemberton <wfp5p@xxxxxxxxxxxx> > --- > drivers/pci/pcie/aer/aerdrv_core.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/pci/pcie/aer/aerdrv_core.c b/drivers/pci/pcie/aer/aerdrv_core.c > index fc0b5a9..bc7425b 100644 > --- a/drivers/pci/pcie/aer/aerdrv_core.c > +++ b/drivers/pci/pcie/aer/aerdrv_core.c > @@ -754,7 +754,7 @@ void aer_isr(struct work_struct *work) > { > struct aer_rpc *rpc = container_of(work, struct aer_rpc, dpc_handler); > struct pcie_device *p_device = rpc->rpd; > - struct aer_err_source e_src; > + struct aer_err_source uninitialized_var(e_src); > > mutex_lock(&rpc->rpc_mutex); > while (get_e_source(rpc, &e_src)) Applied to my linux-next branch, thanks. -- Jesse Barnes, Intel Open Source Technology Center -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html