From: Joe Perches Date: Mon, 24 Aug 2009 17:29:41 +0000 (+0000) Subject: s2io.c: Shorten code line length by using intermediate pointers X-Git-Tag: v2.6.32-rc1~703^2~209 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13d866a9c912d6bc7133f4ef4d536c3a960b06cb;p=pandora-kernel.git s2io.c: Shorten code line length by using intermediate pointers Repeated variable use and line wrapping is hard to read. Use temp variables instead of direct references. struct fifo_info *fifo = &mac_control->fifos[i]; struct ring_info *ring = &mac_control->rings[i]; struct tx_fifo_config *tx_cfg = &config->tx_cfg[i]; struct rx_ring_config *rx_cfg = &config->rx_cfg[i]; Signed-off-by: Joe Perches Acked-by: Sreenivasa Honnur Signed-off-by: David S. Miller --- Reading git-diff-tree failed