Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 60657
b: refs/heads/master
c: 65482cc
h: refs/heads/master
i:
  60655: 4cfbb17
v: v3
  • Loading branch information
Li Yang authored and Kumar Gala committed Jul 3, 2007
1 parent 582fee4 commit db66f35
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 68fb0d203f4f62c8d1ac24d8ef2473582d8ea9db
refs/heads/master: 65482ccf9d00bf4f68e17eb9c656d045d26e5d1f
2 changes: 2 additions & 0 deletions trunk/arch/powerpc/sysdev/qe_lib/ucc.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/stddef.h>
#include <linux/module.h>

#include <asm/irq.h>
#include <asm/io.h>
Expand All @@ -40,6 +41,7 @@ int ucc_set_qe_mux_mii_mng(int ucc_num)

return 0;
}
EXPORT_SYMBOL(ucc_set_qe_mux_mii_mng);

int ucc_set_type(int ucc_num, struct ucc_common *regs,
enum ucc_speed_type speed)
Expand Down
8 changes: 8 additions & 0 deletions trunk/arch/powerpc/sysdev/qe_lib/ucc_fast.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <linux/stddef.h>
#include <linux/interrupt.h>
#include <linux/err.h>
#include <linux/module.h>

#include <asm/io.h>
#include <asm/immap_qe.h>
Expand Down Expand Up @@ -70,6 +71,7 @@ void ucc_fast_dump_regs(struct ucc_fast_private * uccf)
printk(KERN_INFO "guemr : addr - 0x%08x, val - 0x%02x",
(u32) & uccf->uf_regs->guemr, uccf->uf_regs->guemr);
}
EXPORT_SYMBOL(ucc_fast_dump_regs);

u32 ucc_fast_get_qe_cr_subblock(int uccf_num)
{
Expand All @@ -85,11 +87,13 @@ u32 ucc_fast_get_qe_cr_subblock(int uccf_num)
default: return QE_CR_SUBBLOCK_INVALID;
}
}
EXPORT_SYMBOL(ucc_fast_get_qe_cr_subblock);

void ucc_fast_transmit_on_demand(struct ucc_fast_private * uccf)
{
out_be16(&uccf->uf_regs->utodr, UCC_FAST_TOD);
}
EXPORT_SYMBOL(ucc_fast_transmit_on_demand);

void ucc_fast_enable(struct ucc_fast_private * uccf, enum comm_dir mode)
{
Expand All @@ -110,6 +114,7 @@ void ucc_fast_enable(struct ucc_fast_private * uccf, enum comm_dir mode)
}
out_be32(&uf_regs->gumr, gumr);
}
EXPORT_SYMBOL(ucc_fast_enable);

void ucc_fast_disable(struct ucc_fast_private * uccf, enum comm_dir mode)
{
Expand All @@ -130,6 +135,7 @@ void ucc_fast_disable(struct ucc_fast_private * uccf, enum comm_dir mode)
}
out_be32(&uf_regs->gumr, gumr);
}
EXPORT_SYMBOL(ucc_fast_disable);

int ucc_fast_init(struct ucc_fast_info * uf_info, struct ucc_fast_private ** uccf_ret)
{
Expand Down Expand Up @@ -341,6 +347,7 @@ int ucc_fast_init(struct ucc_fast_info * uf_info, struct ucc_fast_private ** ucc
*uccf_ret = uccf;
return 0;
}
EXPORT_SYMBOL(ucc_fast_init);

void ucc_fast_free(struct ucc_fast_private * uccf)
{
Expand All @@ -355,3 +362,4 @@ void ucc_fast_free(struct ucc_fast_private * uccf)

kfree(uccf);
}
EXPORT_SYMBOL(ucc_fast_free);

0 comments on commit db66f35

Please sign in to comment.