I'm working on a driver for a serial board that supports 921600 bps, and it would be awfully nice if there was a way to specify that using the ASYNC_SPD_xxxxx mechanism. Is there any reason why this wouldn't work? #define ASYNC_SPD_HI (1U << ASYNCB_SPD_HI) #define ASYNC_SPD_VHI (1U << ASYNCB_SPD_VHI) #define ASYNC_SPD_SHI (1U << ASYNCB_SPD_SHI) #define ASYNC_SPD_CUST (ASYNC_SPD_HI|ASYNC_SPD_VHI) #define ASYNC_SPD_WARP (ASYNC_SPD_HI|ASYNC_SPD_SHI) + #define ASYNC_SPD_WARP13 (ASYNC_SPD_HI|ASYNC_SPD_SHI|ASYNC_SPD_SHI) #define ASYNC_SPD_MASK (ASYNC_SPD_HI|ASYNC_SPD_VHI|ASYNC_SPD_SHI) -- Grant Edwards grant.b.edwards Yow! I'm wearing PAMPERS!! at gmail.com -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html