Funkcje do napisania
static struct file_operations drv_fops = {
drv_read, /* jeśli obsługujemy urządzenie blokowe */ /* to ten powinien wolać block_read */
block_write, /* default dla blokowych */
NULL, /* drv_readdir - nie używane */
NULL, /* drv_select - nie obsługujemy */
drv_open, /* open i release powinny być napisane ! */
NULL /* block_fsync() */ };