commit a5df5c89bcd6974f7c4ee2bed89bedd5189ee8d7 Author: Jiri Slaby Date: Sat Jun 23 13:53:11 2007 +0200 remove useless comments diff --git a/ath/if_ath_pci.c b/ath/if_ath_pci.c index 08ae745..a2962ca 100644 --- a/ath/if_ath_pci.c +++ b/ath/if_ath_pci.c @@ -128,17 +128,11 @@ static struct ieee80211_ops ath_hw_ops = { .hw_scan = d_hw_scan*/ }; -/* - * Read from a device register - */ static inline u32 ath_hw_reg_read(struct ath_hw *hw, u16 reg) { return readl(hw->ah_sh + reg); } -/* - * Write to a device register - */ static inline void ath_hw_reg_write(struct ath_hw *hw, u32 val, u16 reg) { writel(val, hw->ah_sh + reg); @@ -146,9 +140,6 @@ static inline void ath_hw_reg_write(struct ath_hw *hw, u32 val, u16 reg) #define ATH_HW_IRQ_PENDING 0x4008 -/* - * Interrupt handler. Most of the actual processing is deferred. - */ static irqreturn_t ath_intr(int irq, void *dev_id) { struct net_device *dev = dev_id;