Ignore:
Timestamp:
Jul 17, 2017, 1:22:11 PM (7 years ago)
Author:
max@…
Message:

hide the fields

Location:
trunk/hal/x86_64/drivers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/x86_64/drivers/soclib_bdv.c

    r210 r211  
    176176/* -------------------------------------------------------------------------- */
    177177
    178 void soclib_bdv_init( chdev_t * chdev )
    179 {
     178void soclib_bdv_init(chdev_t *chdev)
     179{
     180        chdev->cmd = &soclib_bdv_cmd;
     181        chdev->isr = &soclib_bdv_isr;
    180182        ata_init();
    181183}
  • trunk/hal/x86_64/drivers/soclib_hba.c

    r76 r211  
    3232void soclib_hba_init( chdev_t * chdev )
    3333{
     34    // set driver specific fields
     35    chdev->cmd = &soclib_hba_cmd;
     36    chdev->isr = &soclib_hba_isr;
    3437
     38        x86_panic((const char *)__func__);
    3539}
    3640
    3741void __attribute__ ((noinline)) soclib_hba_cmd( xptr_t th_xp )
    3842{
    39 
     43        x86_panic((const char *)__func__);
    4044}
    4145
    4246void __attribute__ ((noinline)) soclib_hba_isr( chdev_t * chdev )
    4347{
    44 
     48        x86_panic((const char *)__func__);
    4549}
    4650
Note: See TracChangeset for help on using the changeset viewer.