blob: ae3a5f985c9138bbb5291736d68f7a718df43c38 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
qemu/hw/char/exynos4210_uart.c: possible pointless local variable ?
$ fgrep frame_size qemu/hw/char/exynos4210_uart.c
int speed, parity, data_bits, stop_bits, frame_size;
frame_size = 1; /* start bit */
frame_size++; /* parity bit */
frame_size += data_bits + stop_bits;
$
Suggest either use it or delete it.
|