/* SetControlLineState request -- CDC 1.1 section 6.2.14 (INPUT) */
        u16                             port_handshake_bits;
-#define ACM_CTRL_RTS   (1 << 1)        /* unused with full duplex */
-#define ACM_CTRL_DTR   (1 << 0)        /* host is ready for data r/w */
-
        /* SerialState notification -- CDC 1.1 section 6.3.5 (OUTPUT) */
        u16                             serial_state;
-#define ACM_CTRL_OVERRUN       (1 << 6)
-#define ACM_CTRL_PARITY                (1 << 5)
-#define ACM_CTRL_FRAMING       (1 << 4)
-#define ACM_CTRL_RI            (1 << 3)
-#define ACM_CTRL_BRK           (1 << 2)
-#define ACM_CTRL_DSR           (1 << 1)
-#define ACM_CTRL_DCD           (1 << 0)
 };
 
 static inline struct f_acm *func_to_acm(struct usb_function *f)
                value = 0;
 
                /* FIXME we should not allow data to flow until the
-                * host sets the ACM_CTRL_DTR bit; and when it clears
+                * host sets the USB_CDC_CTRL_DTR bit; and when it clears
                 * that bit, we should return to that no-flow state.
                 */
                acm->port_handshake_bits = w_value;
 {
        struct f_acm            *acm = port_to_acm(port);
 
-       acm->serial_state |= ACM_CTRL_DSR | ACM_CTRL_DCD;
+       acm->serial_state |= USB_CDC_SERIAL_STATE_DSR | USB_CDC_SERIAL_STATE_DCD;
        acm_notify_serial_state(acm);
 }
 
 {
        struct f_acm            *acm = port_to_acm(port);
 
-       acm->serial_state &= ~(ACM_CTRL_DSR | ACM_CTRL_DCD);
+       acm->serial_state &= ~(USB_CDC_SERIAL_STATE_DSR | USB_CDC_SERIAL_STATE_DCD);
        acm_notify_serial_state(acm);
 }
 
        u16                     state;
 
        state = acm->serial_state;
-       state &= ~ACM_CTRL_BRK;
+       state &= ~USB_CDC_SERIAL_STATE_BREAK;
        if (duration)
-               state |= ACM_CTRL_BRK;
+               state |= USB_CDC_SERIAL_STATE_BREAK;
 
        acm->serial_state = state;
        return acm_notify_serial_state(acm);