Commit 74121898 authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Greg Kroah-Hartman

staging: sm7xxfb: fix CamelCase

since mixed case names are not encouraged in coding, so those has
been changed to their corresponding lowercase version.
Signed-off-by: default avatarSudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ceb2f735
...@@ -29,14 +29,14 @@ ...@@ -29,14 +29,14 @@
#define dac_reg (0x3c8) #define dac_reg (0x3c8)
#define dac_val (0x3c9) #define dac_val (0x3c9)
extern void __iomem *smtc_RegBaseAddress; extern void __iomem *smtc_regbaseaddress;
#define smtc_mmiowb(dat, reg) writeb(dat, smtc_RegBaseAddress + reg) #define smtc_mmiowb(dat, reg) writeb(dat, smtc_regbaseaddress + reg)
#define smtc_mmioww(dat, reg) writew(dat, smtc_RegBaseAddress + reg) #define smtc_mmioww(dat, reg) writew(dat, smtc_regbaseaddress + reg)
#define smtc_mmiowl(dat, reg) writel(dat, smtc_RegBaseAddress + reg) #define smtc_mmiowl(dat, reg) writel(dat, smtc_regbaseaddress + reg)
#define smtc_mmiorb(reg) readb(smtc_RegBaseAddress + reg) #define smtc_mmiorb(reg) readb(smtc_regbaseaddress + reg)
#define smtc_mmiorw(reg) readw(smtc_RegBaseAddress + reg) #define smtc_mmiorw(reg) readw(smtc_regbaseaddress + reg)
#define smtc_mmiorl(reg) readl(smtc_RegBaseAddress + reg) #define smtc_mmiorl(reg) readl(smtc_regbaseaddress + reg)
#define SIZE_SR00_SR04 (0x04 - 0x00 + 1) #define SIZE_SR00_SR04 (0x04 - 0x00 + 1)
#define SIZE_SR10_SR24 (0x24 - 0x10 + 1) #define SIZE_SR10_SR24 (0x24 - 0x10 + 1)
......
...@@ -56,7 +56,7 @@ struct smtcfb_info { ...@@ -56,7 +56,7 @@ struct smtcfb_info {
u32 colreg[17]; u32 colreg[17];
}; };
void __iomem *smtc_RegBaseAddress; /* Memory Map IO starting address */ void __iomem *smtc_regbaseaddress; /* Memory Map IO starting address */
static struct fb_var_screeninfo smtcfb_var = { static struct fb_var_screeninfo smtcfb_var = {
.xres = 1024, .xres = 1024,
...@@ -711,8 +711,8 @@ static void smtc_free_fb_info(struct smtcfb_info *sfb) ...@@ -711,8 +711,8 @@ static void smtc_free_fb_info(struct smtcfb_info *sfb)
static void smtc_unmap_mmio(struct smtcfb_info *sfb) static void smtc_unmap_mmio(struct smtcfb_info *sfb)
{ {
if (sfb && smtc_RegBaseAddress) if (sfb && smtc_regbaseaddress)
smtc_RegBaseAddress = NULL; smtc_regbaseaddress = NULL;
} }
/* /*
...@@ -823,7 +823,7 @@ static int smtcfb_pci_probe(struct pci_dev *pdev, ...@@ -823,7 +823,7 @@ static int smtcfb_pci_probe(struct pci_dev *pdev,
#else #else
sfb->lfb = ioremap(mmio_base, 0x00800000); sfb->lfb = ioremap(mmio_base, 0x00800000);
#endif #endif
sfb->mmio = (smtc_RegBaseAddress = sfb->mmio = (smtc_regbaseaddress =
sfb->lfb + 0x00700000); sfb->lfb + 0x00700000);
sfb->dp_regs = sfb->lfb + 0x00408000; sfb->dp_regs = sfb->lfb + 0x00408000;
sfb->vp_regs = sfb->lfb + 0x0040c000; sfb->vp_regs = sfb->lfb + 0x0040c000;
...@@ -833,7 +833,7 @@ static int smtcfb_pci_probe(struct pci_dev *pdev, ...@@ -833,7 +833,7 @@ static int smtcfb_pci_probe(struct pci_dev *pdev,
dev_info(&pdev->dev, "sfb->lfb=%p", sfb->lfb); dev_info(&pdev->dev, "sfb->lfb=%p", sfb->lfb);
} }
#endif #endif
if (!smtc_RegBaseAddress) { if (!smtc_regbaseaddress) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"%s: unable to map memory mapped IO!", "%s: unable to map memory mapped IO!",
sfb->fb.fix.id); sfb->fb.fix.id);
...@@ -859,7 +859,7 @@ static int smtcfb_pci_probe(struct pci_dev *pdev, ...@@ -859,7 +859,7 @@ static int smtcfb_pci_probe(struct pci_dev *pdev,
smem_size = SM722_VIDEOMEMORYSIZE; smem_size = SM722_VIDEOMEMORYSIZE;
sfb->dp_regs = ioremap(mmio_base, 0x00a00000); sfb->dp_regs = ioremap(mmio_base, 0x00a00000);
sfb->lfb = sfb->dp_regs + 0x00200000; sfb->lfb = sfb->dp_regs + 0x00200000;
sfb->mmio = (smtc_RegBaseAddress = sfb->mmio = (smtc_regbaseaddress =
sfb->dp_regs + 0x000c0000); sfb->dp_regs + 0x000c0000);
sfb->vp_regs = sfb->dp_regs + 0x800; sfb->vp_regs = sfb->dp_regs + 0x800;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment