Submitter | Nico Huber |
---|---|
Date | 2012-12-10 14:34:13 |
Message ID | <1355150054-26305-6-git-send-email-nico.huber@secunet.com> |
Download | mbox | patch |
Permalink | /patch/3808/ |
State | Accepted |
Headers | show |
Comments
On Mon, 10 Dec 2012 15:34:13 +0100 Nico Huber <nico.huber@secunet.com> wrote: > To get things working correctly again after programmer_shutdown(), > registered_programmer_count has to be reset. Herewith, we can start > another run with programmer_init(). > > Signed-off-by: Nico Huber <nico.huber@secunet.com> > --- > flashrom.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/flashrom.c b/flashrom.c > index b0366ec..3013c5b 100644 > --- a/flashrom.c > +++ b/flashrom.c > @@ -351,6 +351,10 @@ int programmer_shutdown(void) > int i = --shutdown_fn_count; > ret |= shutdown_fn[i].func(shutdown_fn[i].data); > } > + > + /* Set count of programmers to zero. */ > + registered_programmer_count = 0; > + > return ret; > } > This tiny change was even more stripped down (obvious comment removed) and merged into r1640, thanks for the patch!
Patch
diff --git a/flashrom.c b/flashrom.c index b0366ec..3013c5b 100644 --- a/flashrom.c +++ b/flashrom.c @@ -351,6 +351,10 @@ int programmer_shutdown(void) int i = --shutdown_fn_count; ret |= shutdown_fn[i].func(shutdown_fn[i].data); } + + /* Set count of programmers to zero. */ + registered_programmer_count = 0; + return ret; }
To get things working correctly again after programmer_shutdown(), registered_programmer_count has to be reset. Herewith, we can start another run with programmer_init(). Signed-off-by: Nico Huber <nico.huber@secunet.com> --- flashrom.c | 4 ++++ 1 file changed, 4 insertions(+)