Changeset 13761
- Timestamp:
- 01/29/10 17:53:55 (3 years ago)
- Location:
- src/linux/pb42/linux-2.6.23
- Files:
-
- 5 edited
-
drivers/net/phy/rtl8306.c (modified) (1 diff)
-
include/asm-mips/mach-ar7100/ar7100.h (modified) (1 diff)
-
include/asm-mips/mach-ar7100/ar71xx.h (modified) (1 diff)
-
include/asm-mips/mach-ar7240/ar7240.h (modified) (1 diff)
-
include/linux/phy.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/linux/pb42/linux-2.6.23/drivers/net/phy/rtl8306.c
r13732 r13761 927 927 struct rtl_priv priv; 928 928 u16 chipid; 929 930 929 /* Attach to primary LAN port and WAN port */ 931 930 if (pdev->addr != 0 && pdev->addr != 4) -
src/linux/pb42/linux-2.6.23/include/asm-mips/mach-ar7100/ar7100.h
r13588 r13761 396 396 397 397 398 #define AR7100_GPIO_COUNT 22 399 398 #define AR7100_GPIO_COUNT 64 400 399 /* 401 400 * GPIO Function Enables -
src/linux/pb42/linux-2.6.23/include/asm-mips/mach-ar7100/ar71xx.h
r13356 r13761 176 176 #define GPIO_FUNC_USB_CLK_EN BIT(0) 177 177 178 #define AR71XX_GPIO_COUNT 16178 #define AR71XX_GPIO_COUNT 64 179 179 180 180 extern void __iomem *ar71xx_gpio_base; -
src/linux/pb42/linux-2.6.23/include/asm-mips/mach-ar7240/ar7240.h
r13588 r13761 316 316 317 317 318 #define AR7240_GPIO_COUNT 16318 #define AR7240_GPIO_COUNT 64 319 319 320 320 /* -
src/linux/pb42/linux-2.6.23/include/linux/phy.h
r13356 r13761 372 372 }; 373 373 #define to_phy_driver(d) container_of(d, struct phy_driver, driver) 374 375 #define PHY_ANY_ID "MATCH ANY PHY" 376 #define PHY_ANY_UID 0xffffffff 377 378 /* A Structure for boards to register fixups with the PHY Lib */ 379 struct phy_fixup { 380 struct list_head list; 381 char bus_id[20]; 382 u32 phy_uid; 383 u32 phy_uid_mask; 384 int (*run)(struct phy_device *phydev); 385 }; 386 374 387 375 388 int phy_read(struct phy_device *phydev, u16 regnum); … … 421 434 422 435 extern struct bus_type mdio_bus_type; 436 437 int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask, 438 int (*run)(struct phy_device *)); 439 int phy_register_fixup_for_id(const char *bus_id, 440 int (*run)(struct phy_device *)); 441 int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask, 442 int (*run)(struct phy_device *)); 443 int phy_scan_fixups(struct phy_device *phydev); 444 423 445 #endif /* __PHY_H */
Note: See TracChangeset
for help on using the changeset viewer.
