static void
 at86rf230_rx(struct at86rf230_local *lp,
-            const u8 *data, u8 len)
+            const u8 *data, const u8 len)
 {
-       u8 lqi;
        struct sk_buff *skb;
        u8 rx_local_buf[AT86RF2XX_MAX_BUF];
 
-       if (len < 2)
-               return;
-
-       /* read full frame buffer and invalid lqi value to lowest
-        * indicator if frame was is in a corrupted state.
-        */
-       if (len > IEEE802154_MTU) {
-               lqi = 0;
-               len = IEEE802154_MTU;
-               dev_vdbg(&lp->spi->dev, "corrupted frame received\n");
-       } else {
-               lqi = data[len];
-       }
-
        memcpy(rx_local_buf, data, len);
        enable_irq(lp->spi->irq);
 
        /* We do not put CRC into the frame */
        skb_trim(skb, len - 2);
 
-       ieee802154_rx_irqsafe(lp->hw, skb, lqi);
+       ieee802154_rx_irqsafe(lp->hw, skb, rx_local_buf[len]);
 }
 
 static void
        struct at86rf230_state_change *ctx = context;
        struct at86rf230_local *lp = ctx->lp;
        const u8 *buf = lp->irq.buf;
-       const u8 len = buf[1];
+       u8 len = buf[1];
+
+       if (!ieee802154_is_valid_psdu_len(len)) {
+               dev_vdbg(&lp->spi->dev, "corrupted frame received\n");
+               len = IEEE802154_MTU;
+       }
 
        at86rf230_rx(lp, buf + 2, len);
 }