staging: comedi: amplc_pci230: remove 'inline' from pci230_gat_config()
Let the compiler figure out whether `pci230_gat_config()` should be inlined by itself. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ba508685d9
commit
112d55e585
1 changed files with 1 additions and 2 deletions
|
@ -387,8 +387,7 @@
|
|||
#define GAT_EXT 2 /* external gate input (PPCn on PCI230) */
|
||||
#define GAT_NOUTNM2 3 /* inverted output of channel-2 modulo total */
|
||||
|
||||
static inline unsigned int pci230_gat_config(unsigned int chan,
|
||||
unsigned int src)
|
||||
static unsigned int pci230_gat_config(unsigned int chan, unsigned int src)
|
||||
{
|
||||
return ((chan & 3) << 3) | (src & 7);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue