F:    drivers/media/pci/meye/
  F:    include/uapi/linux/meye.h
  
 +MOTORCOMM PHY DRIVER
 +M:    Peter Geis <pgwipeout@gmail.com>
 +L:    netdev@vger.kernel.org
 +S:    Maintained
 +F:    drivers/net/phy/motorcomm.c
 +
  MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
- S:    Orphan
+ M:    Jiri Slaby <jirislaby@kernel.org>
+ S:    Maintained
  F:    Documentation/driver-api/serial/moxa-smartio.rst
  F:    drivers/tty/mxser.*
  
 
  int sclp_buffer_space(struct sclp_buffer *);
  int sclp_write(struct sclp_buffer *buffer, const unsigned char *, int);
  int sclp_emit_buffer(struct sclp_buffer *,void (*)(struct sclp_buffer *,int));
- int sclp_chars_in_buffer(struct sclp_buffer *);
+ unsigned int sclp_chars_in_buffer(struct sclp_buffer *);
  
 -#ifdef CONFIG_SCLP_CONSOLE
 -void sclp_console_pm_event(enum sclp_pm_event sclp_pm_event);
 -#else
 -static inline void sclp_console_pm_event(enum sclp_pm_event sclp_pm_event) { }
 -#endif
 -
  #endif        /* __SCLP_RW_H__ */
 
  sclp_tty_chars_in_buffer(struct tty_struct *tty)
  {
        unsigned long flags;
 -      struct list_head *l;
        struct sclp_buffer *t;
-       int count;
+       unsigned int count = 0;
  
        spin_lock_irqsave(&sclp_tty_lock, flags);
-       count = 0;
        if (sclp_ttybuf != NULL)
                count = sclp_chars_in_buffer(sclp_ttybuf);
 -      list_for_each(l, &sclp_tty_outqueue) {
 -              t = list_entry(l, struct sclp_buffer, list);
 +      list_for_each_entry(t, &sclp_tty_outqueue, list) {
                count += sclp_chars_in_buffer(t);
        }
        spin_unlock_irqrestore(&sclp_tty_lock, flags);