/* * Platform information definitions. * * 2006 (c) MontaVista Software, Inc. * Vitaly Bordug <vbordug@ru.mvista.com> * * This file is licensed under the terms of the GNU General Public License * version 2. This program is licensed "as is" without any warranty of any * kind, whether express or implied. */ #ifndef FS_PD_H #define FS_PD_H #include <sysdev/fsl_soc.h> #include <asm/time.h> #ifdef CONFIG_CPM2 #include <asm/cpm2.h> #if defined(CONFIG_8260) #include <asm/mpc8260.h> #endif #define cpm2_map(member) (&cpm2_immr->member) #define cpm2_map_size(member, size) (&cpm2_immr->member) #define cpm2_unmap(addr) do {} while(0) #endif #ifdef CONFIG_PPC_8xx #include <asm/8xx_immap.h> extern immap_t __iomem *mpc8xx_immr; #define immr_map(member) (&mpc8xx_immr->member) #define immr_map_size(member, size) (&mpc8xx_immr->member) #define immr_unmap(addr) do {} while (0) #endif
static inline int uart_baudrate(void) { return get_baudrate(); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vitaly Bordug | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Vitaly Bordug | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Vitaly Bordug | 106 | 89.08% | 4 | 57.14% |
Scott Wood | 12 | 10.08% | 2 | 28.57% |
Christophe Leroy | 1 | 0.84% | 1 | 14.29% |
Total | 119 | 100.00% | 7 | 100.00% |