Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright (c) 2016 - Savoir-faire Linux
0003  * Author: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
0004  *
0005  * This file is licensed under the terms of the GNU General Public
0006  * License version 2. This program is licensed "as is" without any
0007  * warranty of any kind, whether express or implied.
0008  */
0009 
0010 #ifndef _TS_NBUS_H
0011 #define _TS_NBUS_H
0012 
0013 struct ts_nbus;
0014 
0015 extern int ts_nbus_read(struct ts_nbus *ts_nbus, u8 adr, u16 *val);
0016 extern int ts_nbus_write(struct ts_nbus *ts_nbus, u8 adr, u16 val);
0017 
0018 #endif /* _TS_NBUS_H */