dect
/
linux-2.6
Archived
13
0
Fork 0

PCI: aerdrv: fix uninitialized variable warning

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@virginia.edu>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
Bill Pemberton 2010-08-03 15:18:43 -04:00 committed by Jesse Barnes
parent 991f739544
commit 50c1126ee1
1 changed files with 1 additions and 1 deletions

View File

@ -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))