From: Ian Abbott Date: Fri, 2 Nov 2012 19:18:01 +0000 (+0000) Subject: staging: comedi: cb_pcidas64: remove board(dev) inline X-Git-Tag: omap-for-v3.8/fixes-for-merge-window-v4-signed~84^2~612 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b07244ceeadd30be344cb49f9bc96f8b8b36a6a4;p=pandora-kernel.git staging: comedi: cb_pcidas64: remove board(dev) inline The `board(dev)` inline function returns `dev->board_ptr` cast from `const void *` to `struct pcidas64_board *`. It really ought to return a `const struct pcidas64_board *`. Rather than fix the function, just remove it and replace the calls with a local variable `thisboard` in the functions that call it. `thisboard` is set to the result of the common inline function `comedi_board(dev)` defined in "comedidev.h". Fix a little resulting fall-out from the inline function `ai_dma_ring_count(board)` whose parameter should have been a const pointer. Signed-off-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed