The patch titled Subject: backlight: move register definitions from header to source has been added to the -mm tree. Its filename is backlight-move-register-definitions-from-header-to-source.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: "Kim, Milo" <Milo.Kim@xxxxxx> Subject: backlight: move register definitions from header to source ROM boundary definitions are no need to be exported because these are used = only in lp855x driver internally. And few code cosmetic changes Signed-off-by: Milo(Woogyom) Kim <milo.kim@xxxxxx> Cc: Richard Purdie <rpurdie@xxxxxxxxx> Cc: Bryan Wu <bryan.wu@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/backlight/lp855x_bl.c | 8 ++++++-- include/linux/lp855x.h | 6 ------ 2 files changed, 6 insertions(+), 8 deletions(-) diff -puN drivers/video/backlight/lp855x_bl.c~backlight-move-register-definitions-from-header-to-source drivers/video/backlight/lp855x_bl.c --- a/drivers/video/backlight/lp855x_bl.c~backlight-move-register-definitions-from-header-to-source +++ a/drivers/video/backlight/lp855x_bl.c @@ -17,8 +17,12 @@ #include <linux/lp855x.h> /* Registers */ -#define BRIGHTNESS_CTRL (0x00) -#define DEVICE_CTRL (0x01) +#define BRIGHTNESS_CTRL 0x00 +#define DEVICE_CTRL 0x01 +#define EEPROM_START 0xA0 +#define EEPROM_END 0xA7 +#define EPROM_START 0xA0 +#define EPROM_END 0xAF #define BUF_SIZE 20 #define DEFAULT_BL_NAME "lcd-backlight" diff -puN include/linux/lp855x.h~backlight-move-register-definitions-from-header-to-source include/linux/lp855x.h --- a/include/linux/lp855x.h~backlight-move-register-definitions-from-header-to-source +++ a/include/linux/lp855x.h @@ -47,12 +47,6 @@ (LP8556_I2C_ONLY << BRT_MODE_SHFT)) #define LP8556_COMB2_CONFIG (LP8556_COMBINED2 << BRT_MODE_SHFT) -/* ROM area boundary */ -#define EEPROM_START (0xA0) -#define EEPROM_END (0xA7) -#define EPROM_START (0xA0) -#define EPROM_END (0xAF) - enum lp855x_chip_id { LP8550, LP8551, _ Subject: Subject: backlight: move register definitions from header to source Patches currently in -mm which might be from Milo.Kim@xxxxxx are linux-next.patch backlight-move-register-definitions-from-header-to-source.patch backlight-move-lp855x-header-into-platform_data-directory.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html