hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/arch/arm/mach-sa1100/jornada720_ssp.c
....@@ -1,5 +1,5 @@
11 // SPDX-License-Identifier: GPL-2.0-only
2
-/**
2
+/*
33 * arch/arm/mac-sa1100/jornada720_ssp.c
44 *
55 * Copyright (C) 2006/2007 Kristoffer Ericson <Kristoffer.Ericson@gmail.com>
....@@ -26,6 +26,7 @@
2626
2727 /**
2828 * jornada_ssp_reverse - reverses input byte
29
+ * @byte: input byte to reverse
2930 *
3031 * we need to reverse all data we receive from the mcu due to its physical location
3132 * returns : 01110111 -> 11101110
....@@ -46,6 +47,7 @@
4647
4748 /**
4849 * jornada_ssp_byte - waits for ready ssp bus and sends byte
50
+ * @byte: input byte to transmit
4951 *
5052 * waits for fifo buffer to clear and then transmits, if it doesn't then we will
5153 * timeout after <timeout> rounds. Needs mcu running before its called.
....@@ -77,6 +79,7 @@
7779
7880 /**
7981 * jornada_ssp_inout - decide if input is command or trading byte
82
+ * @byte: input byte to send (may be %TXDUMMY)
8083 *
8184 * returns : (jornada_ssp_byte(byte)) on success
8285 * : %-ETIMEDOUT on timeout failure