* @delay: delay to be introduced after this transfer before
  *     (optionally) changing the chipselect status, then starting
  *     the next transfer or completing this @spi_message.
- * @delay_usecs: microseconds to delay after this transfer before
- *     (optionally) changing the chipselect status, then starting
- *     the next transfer or completing this @spi_message.
  * @word_delay: inter word delay to be introduced after each word size
  *     (set by bits_per_word) transmission.
  * @effective_speed_hz: the effective SCK-speed that was used to
 #define        SPI_NBITS_DUAL          0x02 /* 2bits transfer */
 #define        SPI_NBITS_QUAD          0x04 /* 4bits transfer */
        u8              bits_per_word;
-       u16             delay_usecs;
        struct spi_delay        delay;
        struct spi_delay        cs_change_delay;
        struct spi_delay        word_delay;
 static inline int
 spi_transfer_delay_exec(struct spi_transfer *t)
 {
-       struct spi_delay d;
-
-       if (t->delay_usecs) {
-               d.value = t->delay_usecs;
-               d.unit = SPI_DELAY_UNIT_USECS;
-               return spi_delay_exec(&d, NULL);
-       }
-
        return spi_delay_exec(&t->delay, t);
 }