Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/console/chardev.h

    r47b2d7e3 r1433ecda  
    5555typedef struct {
    5656        /** Read character directly from device, assume interrupts disabled. */
    57         wchar_t (* poll)(struct indev *);
     57        wchar_t (*poll)(struct indev *);
    5858
    5959        /** Signal out-of-band condition. */
    60         void (* signal)(struct indev *, indev_signal_t);
     60        void (*signal)(struct indev *, indev_signal_t);
    6161} indev_operations_t;
    6262
     
    8282typedef struct {
    8383        /** Write character to output. */
    84         void (* write)(struct outdev *, wchar_t);
     84        void (*write)(struct outdev *, wchar_t);
    8585
    8686        /** Redraw any previously cached characters. */
    87         void (* redraw)(struct outdev *);
     87        void (*redraw)(struct outdev *);
    8888
    8989        /** Scroll up in the device cache. */
    90         void (* scroll_up)(struct outdev *);
     90        void (*scroll_up)(struct outdev *);
    9191
    9292        /** Scroll down in the device cache. */
    93         void (* scroll_down)(struct outdev *);
     93        void (*scroll_down)(struct outdev *);
    9494} outdev_operations_t;
    9595
Note: See TracChangeset for help on using the changeset viewer.