| 127 | ****************************************************************************/ |
| 128 | |
| 129 | int register_driver(FAR const char *path, |
| 130 | FAR const struct file_operations *fops, |
| 131 | mode_t mode, FAR void *priv) |
| 132 | { |
| 133 | return register_driver_with_size(path, fops, mode, priv, 0); |
| 134 | } |