Changeset 245 for trunk/hal/tsar_mips32/core
- Timestamp:
- Jul 20, 2017, 12:46:10 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_drivers.c
r238 r245 16 16 * 17 17 * You should have received a copy of the GNU General Public License 18 * along with ALMOS-MKH .; if not, write to the Free Software Foundation,18 * along with ALMOS-MKH; if not, write to the Free Software Foundation, 19 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20 20 */ … … 35 35 36 36 ////////////////////////////////////////// 37 void hal_drivers_txt_init( chdev_t * txt ) 37 void hal_drivers_txt_init( chdev_t * txt, 38 uint32_t impl ) 38 39 { 39 soclib_tty_init( txt ); 40 if( impl == IMPL_TXT_TTY ) 41 { 42 soclib_tty_init( txt ); 43 } 44 else 45 { 46 assert( false , __FUNCTION__ , "undefined TXT device implementation" ); 47 } 40 48 } 41 49
Note: See TracChangeset
for help on using the changeset viewer.