Rev 2089 | Rev 3065 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2089 | Rev 2697 | ||
---|---|---|---|
Line 58... | Line 58... | ||
58 | } |
58 | } |
59 | 59 | ||
60 | static chardev_operations_t null_stdout_ops = { |
60 | static chardev_operations_t null_stdout_ops = { |
61 | .write = null_putchar |
61 | .write = null_putchar |
62 | }; |
62 | }; |
- | 63 | ||
63 | chardev_t null_stdout = { |
64 | chardev_t null_stdout = { |
64 | .name = "null", |
65 | .name = "null", |
65 | .op = &null_stdout_ops |
66 | .op = &null_stdout_ops |
66 | }; |
67 | }; |
67 | 68 |