]> rtime.felk.cvut.cz Git - lincan.git/blobdiff - lincan/src/ioctl_rtl.c
Structured comments updated.
[lincan.git] / lincan / src / ioctl_rtl.c
index 449b3456ed23de101ef8b0280d6ab43237c4d3a4..fe1809cc3d4500bf42695f626d1e8ed3164c7687 100644 (file)
@@ -14,6 +14,7 @@
 #include "../include/main.h"
 
 #include <rtl_posixio.h>
+#include "../include/ioctl.h"
 #include "../include/can_iortl.h"
 
 
@@ -48,6 +49,9 @@ int can_ioctl_rtl_posix(struct rtl_file *fptr, unsigned int cmd, unsigned long a
        }
 
        switch (cmd) {
+               case CAN_DRV_QUERY: {
+                       return can_ioctl_query(canuser, arg);
+               }
                case STAT: {
                        for (i=0x0; i<0x100; i++)
                                CANMSG("0x%x is 0x%x\n",i,can_read_reg(chip,i));
@@ -76,8 +80,7 @@ int can_ioctl_rtl_posix(struct rtl_file *fptr, unsigned int cmd, unsigned long a
                }
                
                case CANQUE_FILTER: {
-                       struct canfilt_t canfilt;
-                       copy_from_user(&canfilt, (void*)arg, sizeof(struct canfilt_t));
+                       struct canfilt_t canfilt=*(struct canfilt_t *)arg;
                        if(canuser->rx_edge0){
                                canque_set_filt(canuser->rx_edge0, canfilt.id, canfilt.mask, canfilt.flags);
                        }