> > + storage->rx_length_errors = (stats.rx_undersize_frame_errors + > > + stats.rx_oversize_frame_errors); > > Parens not needed. > > > + storage->rx_errors = (stats.rx_fcs_errors + > > + stats.rx_alignment_errors + > > + stats.rx_fragment_errors + > > + stats.rx_jabber_errors + > > + stats.rx_undersize_frame_errors + > > + stats.rx_oversize_frame_errors + > > + stats.rx_dropped_frames); > > Neither here. > > > + storage->tx_errors = (stats.tx_fcs_errors + > > + stats.tx_excess_deferral_errors + > > + stats.tx_carrier_errors); > > And here. >
Thanks. Will resubmit. Woojung