X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=carlfw%2Fusb%2Ffifo.c;h=01c2d0c5e9ae2de32fd7062a2ad73712e3878701;hb=6598140e430d622be926aed43ec19fec8326cd11;hp=d5c2e120ed41a55a6296bfaf13c12cc8eaadfcc2;hpb=12d3f1ba6ba522cd1ef11483d813fe2c2e64f04b;p=carl9170fw.git diff --git a/carlfw/usb/fifo.c b/carlfw/usb/fifo.c index d5c2e12..01c2d0c 100644 --- a/carlfw/usb/fifo.c +++ b/carlfw/usb/fifo.c @@ -17,8 +17,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * with this program; If not, see . */ #include "carl9170.h" @@ -28,29 +27,29 @@ /* TODO / TOTEST */ #ifdef CONFIG_CARL9170FW_USB_MODESWITCH -static inline void usb_ep_map(const uint8_t ep, const uint8_t map) +static void usb_ep_map(const uint8_t ep, const uint8_t map) { setb(AR9170_USB_REG_EP_MAP + (ep - 1), map); } -static inline void usb_fifo_map(const uint8_t fifo, const uint8_t map) +static void usb_fifo_map(const uint8_t fifo, const uint8_t map) { setb(AR9170_USB_REG_FIFO_MAP + (fifo - 1), map); } -static inline void usb_fifo_config(const uint8_t fifo, const uint8_t cfg) +static void usb_fifo_config(const uint8_t fifo, const uint8_t cfg) { setb(AR9170_USB_REG_FIFO_CONFIG + (fifo - 1), cfg); } -static inline void usb_ep_packet_size_hi(const uint8_t ep, const uint8_t dir, +static void usb_ep_packet_size_hi(const uint8_t ep, const uint8_t dir, const uint16_t size) { setb(AR9170_USB_REG_EP_IN_MAX_SIZE_HIGH + (((dir * 0x20) + ep) << 1), (size >> 8) & 0xf); } -static inline void usb_ep_packet_size_lo(const uint8_t ep, const uint8_t dir, +static void usb_ep_packet_size_lo(const uint8_t ep, const uint8_t dir, const uint16_t size) { setb(AR9170_USB_REG_EP_IN_MAX_SIZE_LOW + (((dir * 0x20) + ep) << 1),