The point bp is assigned a value that is never read, it is being
re-assigned later to bp = &kdb_breakpoints[lowbp] in a for-loop.
Remove the redundant assignment.
Addresses-Coverity ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20191128130753.181246-1-colin.king@canonical.com
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
 
                 * assume that the breakpoint number is desired.
                 */
                if (addr < KDB_MAXBPT) {
-                       bp = &kdb_breakpoints[addr];
                        lowbp = highbp = addr;
                        highbp++;
                } else {